/* Keep overrides very small and focused on login layout */

/* Left panel background: soft gradient using brand color */
.bg-brand-color-1 {
    background: linear-gradient(135deg, #08b89d 0%, #00a37e 60%, #00906b 100%);
}

/* Logo wrapper: white pill to make the logo text readable */
.brand-logo-wrapper {
    background-color: #ffffff;
    padding: 1.75rem 2.25rem;
    border-radius: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-wrapper-mobile {
    padding: 1.25rem 1.75rem;
    border-radius: 1.25rem;
}

/* Language switcher in top-right corner */
.auth-lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1050;
}

.auth-lang-switcher .btn {
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.auth-lang-switcher .btn:hover {
    color: #0f766e;
}
.auth-form .card {
    border-radius: 1.25rem;
    border: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.auth-form .card-body h4 {
    color: #111827;
    font-weight: 600;
}
/* Primary button using same green tone */
.auth-form .btn.btn-primary {
    background: linear-gradient(135deg, #08b89d 0%, #00a37e 100%);
    border: none;
    font-weight: 500;
    padding-inline: 2.5rem;
}


.auth-form .btn.btn-primary:hover {
    filter: brightness(1.05);
}

/* Small tweak for labels and link color */
.auth-form .form-label {
    color: #111827;
    font-weight: 500;
}

.auth-form a.text-secondary {
    color: #0f766e;
}

/* Logo sizing */
.auth-logo {
    max-height: 140px;
    width: auto;
}

.auth-logo-mobile {
    max-height: 90px;
    width: auto;
}

/* Mobile spacing + language switcher behavior */
@media (max-width: 767.98px) {
    .auth-main {
        padding: 1.5rem 0.75rem;
    }

    .auth-form .card {
        border-radius: 1rem;
    }

    /* Language switcher: no fixed on mobile, goes in normal flow */
    .auth-lang-switcher {
        position: static;
        display: flex;
        justify-content: flex-end;
        padding: 0.25rem 0.75rem 0.75rem;
    }

    .auth-lang-switcher .btn {
        font-size: 0.75rem;
        padding: 0.25rem 0.4rem;
    }
}