/* Auth Pages (Login/Register) */
.auth-container {
    /* min-height: calc(100vh - 200px); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 40px 20px; */
}

.auth-card {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
}

.auth-toggle {
    display: flex;
    background: var(--soft-bg);
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.auth-toggle .button-login-register {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    color: inherit;
}

.auth-toggle .button-login-register.active {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--primary-blue);
}