/* Estilos para a página de login - Versão simplificada para mobile */

/* Estilos para mobile (até 767px) */
@media (max-width: 767px) {
    /* Reset de estilos do body para a página de login */
    body.login-registro-container {
        padding: 15px !important;
        margin: 0 !important;
        background: #f5f5f5 !important;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Esconder o logo no mobile */
    .login-logo-container {
        display: none !important;
    }

    /* Container do formulário */
    .login-form-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 25px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }

    /* Estilos para o formulário */
    .login-registro-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    /* Campos do formulário */
    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .form-group input {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        height: 44px;
        box-sizing: border-box;
    }

    /* Botão de login */
    .btn-submit {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px !important;
        background: #1e3c72 !important;
        color: white !important;
        border: 1px solid #1e3c72 !important;
        border-radius: 4px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        margin: 10px 0 0 !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
        display: block !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        height: 44px !important;
        line-height: 1.5 !important;
    }

    /* Links abaixo do formulário */
    .form-links {
        margin-top: 20px;
        text-align: center;
    }

    .form-links a {
        display: block;
        color: #1e3c72;
        text-decoration: none;
        margin: 10px 0;
    }

    /* Mensagem de erro */
    .mensagem.erro {
        background: #ffebee;
        color: #c62828;
        padding: 10px;
        border-radius: 4px;
        margin-bottom: 15px;
        text-align: center;
        border: 1px solid #ffcdd2;
    }
}

/* Para desktop (acima de 768px), manter o estilo original */
@media (min-width: 768px) {
    .login-logo-container {
        display: none;
    }
}
