/* Auth Pages Styles */
.auth-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background-color: var(--light-color);
}

.auth-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--grey-light-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.1);
}

.auth-form .checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.auth-form .checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.auth-form .forgot-password {
    float: right;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.auth-form .forgot-password:hover {
    text-decoration: underline;
}

.auth-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--grey-light-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background-color: white;
    padding: 0 1rem;
    color: var(--grey-color);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--grey-light-color);
    background-color: white;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.btn-social:hover {
    background-color: var(--grey-light-color);
}

.btn-google {
    color: #db4437;
}

.btn-facebook {
    color: #4267B2;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
    color: var(--grey-color);
}

.auth-switch a {
    color: var(--primary-color);
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 480px) {
    .auth-box {
        padding: 1.5rem;
    }

    .auth-form input[type="text"],
    .auth-form input[type="email"],
    .auth-form input[type="password"] {
        padding: 0.6rem;
    }

    .btn-social {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
} 