body {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    height: 100vh;
    display: flex;
    align-items: center;
    background: #121212;
}

.auth-card {
    background: #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    color: #fff;
}

.auth-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    font-size: .7rem;
    color: #aaa;
    margin-bottom: 24px;
}

.auth-btn {
    border: 1px solid #43bfac;
    border-radius: 999px;
    padding: 12px;
    width: 100%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: .2s;
    margin-bottom: 12px;
    justify-content: center;
}

.auth-btn:hover {
    background: rgba(67,191,172,.12);
}

.divider-text {
    text-align: center;
    color: #aaa;
    font-size: .85rem;
    margin: 20px 0;
}

.terms {
    font-size: .75rem;
    color: #aaa;
    margin-top: 24px;
    text-align: center;
}

.terms a {
    color: #43bfac;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.google-signin-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.g_id_signin iframe {
    border-radius: 10px !important;
}

.divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
}

.divider span {
    background: #1e1e1e;
    padding: 0 10px;
    font-size: .85rem;
    color: #aaa;
    position: relative;
}

.text-default {
    color: #43bfac !important;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #43bfac;
    --bs-btn-border-color: #43bfac;

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #36a89a;
    --bs-btn-hover-border-color: #36a89a;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #2f9589;
    --bs-btn-active-border-color: #2f9589;

    --bs-btn-focus-shadow-rgb: 67, 191, 172;

    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #8fd7cc;
    --bs-btn-disabled-border-color: #8fd7cc;

    --bs-gradient: none;
}

.bg-primary {
    background-color: #43bfac !important;
}
