



.login-wrapper {
    min-height: calc(100vh - 120px); /* desconta header/nav */
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    background-color: rgb(52, 97, 208);
    padding: 20px;
    text-align: center;

}

body {
    background-color: rgb(241, 241, 241);
}


.container input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* FUNDO DA PÁGINA */
body {
    background-color: #f2f2f2;
}

/* CONTAINER PRINCIPAL */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
}

/* TÍTULOS */
h2 {
    margin-bottom: 15px;
    color: #333;
}

/* TEXTO PADRÃO */
p {
    margin-bottom: 10px;
    color: #555;
}

/* CARD (SEPARAÇÃO DAS SEÇÕES) */
.card {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* FORMULÁRIOS */
form {
    display: flex;
    flex-direction: column;
}

/* CAMPOS */
input,
textarea {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* BOTÕES */
button {
    padding: 10px;
    background-color: #3366cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #254a99;
}

/* LISTA DE EMAILS */
.email-list {
    list-style: none;
}

.email-list li {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

/* LOGOUT */
.logout {
    text-align: right;
}

.logout a button {
    background-color: #cc3333;
}

.logout a button:hover {
    background-color: #992525;
}

/* LOGIN */
.login-wrapper {
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CARD DO LOGIN */
.login-wrapper .container {
    max-width: 400px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* BOTÃO LOGIN (input submit) */
.login-wrapper input[type="submit"] {
    padding: 10px;
    background-color: #3366cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.login-wrapper input[type="submit"]:hover {
    background-color: #254a99;
}

/* MENSAGEM DE ERRO LOGIN */
.error {
    color: #cc3333;
    margin-bottom: 15px;
    font-weight: bold;
}

textarea {
  font-size:16px;
  line-height:1.6;
  font-weight:600;
}

