* {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C41919;  
}

.login-container {
    background-color: white; 
    padding: 20px;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    max-width: 90%; /* Para melhor responsividade */
    width: 300px; 
}

h2 {
    text-align: left;
    margin-bottom: 0;
}

form {
    display: flex;
    flex-direction: column;
}

h6 {
    color: #000000c5;
    margin-top: 5px;
    margin-bottom: 18px;
}

label {
    color: rgba(0, 0, 0, 0.61);
    margin-bottom: 10px; /* Removido duplicado */
}

input {
    padding: 10px;
    border: 1px solid #C41919;
    border-radius: 7px;
    width: 90%;
}

button {
    padding: 10px;
    background-color: #C41919; 
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #a41212; /* Alterado para cor diferente no hover */
}

button > a {
    text-decoration: none;
    color: white;
}

.olho {
    position: relative;
}

.senha {
    padding: 10px;
    border: 1px solid #C41919;
    border-radius: 7px;
}

div > i {
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    bottom: 4px;
}

.margi {
    text-align: left;
}

.margi2 {
    text-align: right;
}

.links {
    display: flex; 
    justify-content: space-between; 
    margin-top: 8px; 
}

.links a {
    color: #000000; 
    text-decoration: none; 
    padding: 8px;
    flex: 1;
    font-size: 12px;
}

.links a:hover {
    color: #C41919; 
}

.links a:focus {
    outline: 2px solid #C41919; /* Adicionado estilo de foco */
}
