/* ===== RESET ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0b3553, #1f5f8b);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CONTENEDOR ===== */
.login-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-align: center;
}

/* ===== TITULO ===== */
.login-container h2 {
    margin-bottom: 20px;
    color: #0b3553;
    border-bottom: 3px solid #f2c94c;
    display: inline-block;
    padding-bottom: 5px;
}

/* ===== INPUTS ===== */
.login-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: 0.2s;
}

.login-container input:focus {
    border-color: #3fa9f5;
    outline: none;
    box-shadow: 0 0 5px rgba(63,169,245,0.5);
}

/* ===== BOTON ===== */
.login-container button {
    width: 100%;
    padding: 10px;
    background: #1f5f8b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.login-container button:hover {
    background: #3fa9f5;
}

.login-container:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}