.auth-wrapper {
    max-width: 430px;
    margin: 40px auto;
    padding: 0 15px;
}

.auth-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.auth-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 28px;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.auth-tabs a {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-weight: 500;
    color: #555 !important;
    text-decoration: none;
}

.auth-tabs a.active {
    color: var(--bs-primary) !important;
    border-bottom: 3px solid var(--bs-primary);
}

.auth-tabs a:hover {
    color: var(--bs-primary) !important;
}

.form-control {
    height: 46px;
    border-radius: 8px;
}

.btn-orange {
    background: var(--bs-primary);
    border: none;
    color: white;
    font-weight: 600;
    height: 46px;
    border-radius: 8px;
    transition: all .2s ease;
}

.btn-orange:hover {
    background: var(--bs-primary);
    filter: brightness(0.9);
    transform: translateY(-1px);
}

.auth-links {
    text-align: right;
}

.auth-links a {
    font-size: 13px;
    color: #777;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 18px;
    transition: 0.2s ease;
}

.password-toggle:hover {
    color: #ff7a00;
}

@media (max-width: 576px) {
    .auth-wrapper {
        margin-top: 20px;
    }
    .auth-card {
        padding: 22px;
    }
    .auth-title {
        font-size: 20px;
    }
}
