/* Estilo geral */
body {
    font-family: Arial, sans-serif;
    background: #ff6600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Caixa de login */
.login-container {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
}

.logo-container {
    margin-bottom: 20px; /* Espaço entre logo e título */
}

.logo {
    max-width: 100%;
    height: auto;
}

/* Botões e campos de entrada */
input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Botão */
button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 15px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #e65c00;
}

/* Erros */
.error {
    color: red;
    font-size: 14px;
}

/* Ajustes responsivos */
@media (max-width: 500px) {
    .login-container {
        width: 80%;
    }
}
