/* Reset de estilo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f9;
    color: #012835;
    text-align: center;
    padding: 50px 0;
}

.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 24px;
    color: #012835;
    margin-bottom: 20px;
}

/* Logo */
.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
}

/* Estilo para os inputs e botões */
input, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    background-color: #6BBD45;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #C5D32E;
}

/* Link de ações */
a {
    color: #6BBD45;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Mensagens de erro e sucesso */
.error {
    color: red;
    margin-top: 10px;
}

.success {
    color: green;
    margin-top: 10px;
}
