body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e3f4de;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 100%; /* Largura total do container */
    max-width: 200px; /* Tamanho máximo para a imagem */
    height: auto; /* Altura automática para manter a proporção */
    margin-bottom: 20px;
}

.label {
    margin-bottom: 10px;
    font-weight: bold;
}

.input, .select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.button:hover {
    background-color: #0056b3;
}

.registerText {
    margin-top: 10px;
    text-align: center;
}

.registerText a {
    color: #007BFF;
    text-decoration: none;
}

.registerText a:hover {
    text-decoration: underline;
}