@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #0a0514;
    overflow: hidden;
}

/* CONTENEDOR ESCALADO (Más grande y simétrico) */
.container {
    position: relative;
    width: 550px; /* Aumentado de 480px */
    height: 720px; /* Aumentado de 640px */
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* ANIMACIÓN DE BORDE NEÓN (Más gruesa para mayor escala) */
.container::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #FFAA00, #692A86);
    z-index: -2;
    animation: rotate-border 4s linear infinite;
}

.container::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #692A86, #FFAA00);
    z-index: -2;
    animation: rotate-border 4s linear infinite;
    animation-delay: -2s;
}

@keyframes rotate-border {
    100% { transform: rotate(360deg); }
}

/* CAJA INTERNA TIPO CRISTAL (Más espacio de respiro) */
.inner-box {
    position: absolute;
    inset: 6px; /* Borde un poco más grueso para que resalte más el neón */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: rgba(15, 5, 25, 0.96);
    backdrop-filter: blur(30px);
    z-index: 10;
    padding: 60px; /* Más padding para que no se vea apretado */
    box-shadow: inset 0 0 30px rgba(0,0,0,0.9);
}

/* LOGO MAXI */
.logo-login {
    width: 250px; /* Logo mucho más grande y protagonista */
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.form { width: 100%; }

.form h2 {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: white;
    margin-bottom: 35px;
    font-size: 1.4em;
    font-weight: 700;
    text-align: center;
    opacity: 0.9;
}

.form p {
    text-align: left;
    font-size: 0.85em;
    color: #FFAA00;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* INPUTS MÁS GRANDES */
.form input[type="text"],
.form input[type="password"] {
    width: 100%;
    padding: 16px 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    font-size: 1.1em;
    color: #fff;
    background: rgba(255,255,255,0.04);
    transition: all 0.3s ease;
}

.form input:focus {
    outline: none;
    border-color: #FFAA00;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.15);
    transform: scale(1.01);
}

/* BOTÓN ACCIÓN MÁS FUERTE */
.form input[type="submit"] {
    width: 100%;
    padding: 18px;
    margin-top: 15px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    background: linear-gradient(90deg, #692A86 0%, #FFAA00 100%);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form input[type="submit"]:hover {
    box-shadow: 0 0 35px rgba(255, 170, 0, 0.5);
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.btns {
    margin-top: 40px;
    font-size: 0.85em;
    color: rgba(255,255,255,0.4);
    text-align: center;
    line-height: 1.8;
}

/* ERRORES */
.errorlist {
    list-style: none;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid #ff0055;
    color: #ff0055;
    font-size: 0.9em;
    text-align: left;
}