@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* --- ESTILOS GERAIS E ESTRUTURA ORIGINAL --- */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.login-panel-left {
    width: 50%;
    height: 100%;
    background-image: url('../img/login-bg.jpg');
    background-size: cover;
    background-position: center;
}

.login-panel-right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
}


/* --- ESTILOS PARA O FORMULÁRIO CERVANTES --- */
.cervantes-login-box {
    background-color: #003366;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 400px;
    box-sizing: border-box;
    text-align: center;
}

.cervantes-login-box .logo {
    max-width: 300px;
    /* ESPAÇAMENTO AJUSTADO PARA COMPENSAR A REMOÇÃO DO TÍTULO */
    margin-bottom: 40px;
}

/* O estilo para H2 foi removido pois o elemento não existe mais */

.cervantes-login-box .input-group {
    display: flex;
    margin-bottom: 20px;
}

.cervantes-login-box .input-group .icon {
    background-color: #c82333;
    color: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 18px;
}

.cervantes-login-box .input-group input {
    flex-grow: 1;
    border: none;
    padding: 15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 16px;
    outline: none;
}

.cervantes-login-box .btn-acessar {
    width: 100%;
    padding: 15px;
    background-color: #8c8c8c;
    color: #f0f0f0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.cervantes-login-box .btn-acessar:hover {
    background-color: #7a7a7a;
}


/* --- Estilo para as mensagens de erro --- */
.server-error {
    background-color: #ffdddd;
    color: #d8000c;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}