/* Estilos gerais */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Estilo do timbre e cabeçalho */
.login-header img.timbre {
    max-width: 100px;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
}

/* Estilo do formulário de login */
.login-form {
    width: 100%;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    font-size: 0.9em;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* Links de recuperação e cadastro de senha */
.links {
    margin-top: 15px;
    text-align: center;
}

.links a {
    font-size: 0.9em;
    text-decoration: none;
    color: #007BFF;
}

.links a:hover {
    text-decoration: underline;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .login-wrapper {
        margin: 0 15px;
    }

    .login-header h1 {
        font-size: 1.1em;
    }

    .input-group input {
        padding: 8px;
    }

    button[type="submit"] {
        padding: 8px;
    }

    .links a {
        font-size: 0.85em;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .login-header img.timbre {
        max-width: 80px;
    }

    .login-header h1 {
        font-size: 1em;
        padding-bottom: 5px;
    }

    button[type="submit"] {
        padding: 6px;
        font-size: 0.9em;
    }

    .input-group input {
        font-size: 0.9em;
    }
}
