.body{
    background-color: #FFFFFF;
}

.logo{
    width: 200px;
    height: auto;
    margin-top: 50px;
}

.mensagem{
    font-size: 20px !important;
}

body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #4cae4c;
}

.error {
    color: red;
    text-align: center;
    margin: 10px 0;
}

.recover-password {
    margin-top: 10px;
    display: block;
    text-align: center;
    color: #007bff;
    text-decoration: underline;
}