/* ==========================
   Fondo con GIF
========================== */

body {
    font-family: 'Poppins', sans-serif;
    background: url('NekoBG.gif') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5%;
    color: #333;
}

/* Opcional: overlay semitransparente para que el formulario destaque */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* Ajusta la opacidad si quieres más o menos oscuro */
    z-index: -1;
}

/* ==========================
   Contenedor central
========================== */
form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;
    max-width: 350px;
    z-index: 1;
    margin-top: 50px; /* ajusta para mover el formulario más arriba o abajo */
}

/* Inputs del formulario */
form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    margin: 0.6rem 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
}

/* ==========================
   Botones del formulario
========================== */
form button {
    background-image: linear-gradient(to right, #000000, #464141, #8f8f8f, #464141, #000000);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hover del botón */
form button:hover {
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Botón ancho completo (opcional) */
form button.full-width {
    width: 100%;
}

/* ==========================
   Logo / Encabezado
========================== */
#logo {
    text-align: center;
    margin-bottom: 2rem;
    z-index: 1;
}

#logo h1 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    font-style: italic;
}

/* ==========================
   Responsivo
========================== */
@media (max-width: 500px) {
    form {
        width: 90%;
        padding: 1.5rem;
    }

    #logo h1 {
        font-size: 1.2rem;
    }
}