/* Definir a fonte Montserrat para o site */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4; /* Cor de fundo suave */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: white;
    padding: 30px;
    border-radius: 12px; /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2 {
    color: #641220; /* Cor de texto principal */
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 14px;
    color: #641220; /* Cor dos labels */
    text-align: left;
    font-weight: 500;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ef233c; /* Cor da borda do input */
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #641220; /* Borda escura ao focar */
}

input::placeholder {
    color: #aaa;
}

button {
    background-color: #641220; /* Cor de fundo do botão */
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ef233c; /* Cor de fundo do botão ao passar o mouse */
}

button:active {
    background-color: #d91d31; /* Cor de fundo ao clicar no botão */
}

div ul {
    list-style-type: none;
    padding: 0;
}

div ul li {
    color: #ef233c;
    font-size: 14px;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
    }
}
