
/* ---------- FONDO GENERAL ---------- */
body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(180deg, #0f3f14, #2f6b20, #3a7c24);
    font-family: 'Poppins', sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

/* ---------- TÍTULO ---------- */
h2 {
    font-family: 'Merriweather', serif;
    color: #ffd44a;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ---------- FORMULARIO ---------- */
form {
    background: #faf2dd;
    color: #333;
    padding: 25px 28px;
    border-radius: 15px;
    width: 330px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ---------- LABELS ---------- */
label {
    font-weight: 500;
    color: #4d4d4d;
    font-size: 14px;
}

/* ---------- INPUTS ---------- */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #fff8e7;
    border: 1px solid #d1b676;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #e8b23a;
    box-shadow: 0 0 6px rgba(255, 196, 0, 0.6);
}

/* ---------- BOTÓN ---------- */
input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #ffce48, #e8b23a);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #4a3a00;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: .3s;
}

input[type="submit"]:hover {
    background: linear-gradient(180deg, #ffd968, #f0b93d);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* ---------- TEXTO INFERIOR ---------- */
p {
    color: #fff;
    margin-top: 15px;
    font-size: 15px;
}

a {
    color: #ffd44a;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
