.auth-logo {
    margin-bottom: 2rem;
    text-align: center;
}
.auth-logo img {
    width: 120px;
    height: auto;
    opacity: 0.9;
    filter: brightness(0) saturate(100%);
}
.auth-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    padding: 40px 32px;
}
.auth-card h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px !important;
    color: #181C32;
}
.auth-card .form-control {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #E4E6EF;
    font-size: 14px;
    font-weight: 400;
    height: auto;
}
.auth-card .form-control:focus {
    border-color: var(--bs-app-header-primary-base-bg-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-app-header-primary-base-bg-color-rgb), 0.1);
}
.auth-card .btn {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.auth-card .btn-social {
    background: #ffffff;
    border: 1px solid #dee2e6;
    color: #3F4254;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    border-radius: 8px;
    padding: 6px 12px;
}
.auth-card .btn-social:hover {
    background: #f8f9fa;
    border-color: #c1c9d2;
}
.auth-card .btn-social img {
    width: 18px;
    height: 18px;
}
.auth-separator {
    margin: 32px 0;
    position: relative;
    text-align: center;
}
.auth-separator::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #E4E6EF;
    z-index: 0;
}
.auth-separator span {
    background: #ffffff;
    padding: 0 16px;
    color: #A1A5B7;
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 400;
}
.auth-card .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
    border-color: #E4E6EF;
}
.auth-card .form-check-input:checked {
    background-color: var(--bs-app-header-primary-base-bg-color);
    border-color: var(--bs-app-header-primary-base-bg-color);
}
.auth-card label {
    font-weight: 500;
    color: #3F4254;
}
.auth-card .form-text {
    font-weight: 400;
    color: #7E8299;
}
.auth-card a {
    font-weight: 500;
    text-decoration: none;
} 