* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    /* background: linear-gradient(135deg, #2c3e50, #4ca1af); */
    background: linear-gradient(135deg, #2c3e50, #4caf87);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 360px;
}

.login-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.login-box h1 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.login-box p {
    margin-bottom: 25px;
    color: #777;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.login-box button {
    width: 100%;
    padding: 12px;
    border: none;
    /* background: #2ecc71; */
    background: #42962f;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.login-box button:hover {
    background: #27ae60;
}

.erro {
    margin-top: 15px;
    color: #e74c3c;
    font-size: 14px;
    display: none;
}

/* ===============================
   BOTÕES – ALTERAR SENHA
=============================== */
.login-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.login-actions button {
    flex: 1;
}

/* Botão cancelar (visual neutro) */
.btn-cancelar {
    background: #e5e7eb;
    color: #111827;
}

.btn-cancelar:hover {
    background: #d1d5db;
}