/* Estilos específicos para a página de login */
.login-section {
    padding: 120px 0 60px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.login-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.login-box h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-subtitle {
    color: var(--text);
    text-align: center;
    margin-bottom: 2rem;
}

/* Opções de Login */
.login-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--text);
    border: 1px solid #ddd;
    width: 100%;
    font-size: 1rem;
}

.google-login:hover {
    background-color: #f5f5f5;
}

/* Divisor */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 10px;
}

/* Formulário de Login */
.email-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer do Login */
.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.login-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 20px 40px;
    }

    .login-box {
        padding: 2rem;
    }
} 