/* Estilos específicos para a página de login */

body.login-page {
    /*background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);*/
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.login-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.login-logo {
    margin-bottom: 30px;
}

.login-logo a {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.login-logo span {
    color: var(--accent-color);
}

.login-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;

}

.login-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.2);
}

.login-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
}

.login-footer {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

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

}



.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    width: auto;
    margin-right: 8px;
}

.social-login {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.social-login p {
    margin-bottom: 15px;
    color: #666;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;

}



.social-button.google {
    color: #DB4437;
}

.social-button.facebook {
    color: #4267B2;
}

.social-button.apple {
    color: #000;
}

.back-to-home {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #4a6fa5;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;

}

.back-to-home i {
    margin-right: 8px;
}



.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.error-message.show {
    display: block;
}



/* Responsividade */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }
    
    .login-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .login-options a {
        margin-top: 10px;
    }
    
    .back-to-home {
        top: 10px;
        left: 10px;
        font-size: 14px;
    }
}