body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* topo da tela */
    align-items: center;
    min-height: 100vh;
}

/* Logo centralizada acima do formulário */
.logo-container {
    margin: 30px 0 10px 0; /* espaçamento acima e abaixo */
    text-align: center;
}

.logo-container img {
    height: 80px; /* ajuste do tamanho da logo */
    cursor: pointer;
}

/* Formulário */
.cadastrar-container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.cadastrar-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.cadastrar-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.cadastrar-container button {
    width: 100%;
    padding: 10px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.cadastrar-container button:hover {
    background: #0056b3;
}

.cadastrar-container p {
    text-align: center;
    margin-top: 15px;
}

.cadastrar-container p a {
    color: #007BFF;
    text-decoration: none;
}

.cadastrar-container p a:hover {
    text-decoration: underline;
}

.erro {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}
