/* Fundo e centralização */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url("../img/fundo_login.jpg") no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Container principal */
.login-container {
    background: rgba(255, 255, 255, 0.623); /* branco com transparência */
    backdrop-filter: blur(1px); /* efeito de vidro */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.logo {
    width: 250px;          
    margin-bottom: 10px;  
    user-select: none;     
}



.login-container h2 {
    margin-bottom: 20px;
    color: #0a996e;
}

/* Formulário */
form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #00BFA5;
    box-shadow: 0 0 4px rgba(0, 191, 165, 0.5);
}

/* Botão */
button {
    background-color: #03A969;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

button:hover {
    background-color: #009e8a;
}

/* Mensagem de erro */
.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}
