/* Estilos Generales - Mantenemos la consistencia */
body {
    font-family: 'FamiliaTipograficaAncizar', sans-serif;
    background-color: #03A64A;
    /* Fondo Oscuro Tecnológico */
    color: #e5e5f7;
    /* Texto Claro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
    background-image: url('./media/image/fondo\ vista\ moderador.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Contenedor principal de la tarjeta */
.card-container {
    background-color: rgba(10, 134, 6, 0.25);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #4a4a6e;
}

/* Estilo del título */
h1 {
    color: #1a1a2e;
    /* Color de acento de Moderador/Advertencia */
    margin-bottom: 30px;
    font-size: 2.2em;
    letter-spacing: 1px;
}

/* Estilo para el campo de entrada (input) */
.input-group {
    margin-bottom: 25px;
}

input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #1a1a2e;
    /* Borde de acento de Moderador */
    border-radius: 6px;
    background-color: #1a1a2e;
    color: #e5e5f7;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="password"]:focus {
    outline: none;
    border-color: rgba(71, 255, 34, 0.5);
    /* Color más brillante al enfocar */
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

/* Estilo del botón principal (Enviar Código) */
.submit-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: rgb(10, 134, 6);
    /* Color de acento de Moderador */
    color: #1a1a2e;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s, box-shadow 0.3s;
    margin-bottom: 15px;
    /* Espacio antes del botón de regreso */
}

.submit-button:hover {
    background-color: #044607;
    box-shadow: 0 0 10px rgba(71, 255, 34, 0.5);
}

.submit-button:active {
    transform: scale(0.98);
}

/* Botón de Regreso (Minimalista y discreto) */
.back-button {
    display: inline-block;
    padding: 10px 20px;
    color: #1a1a2e;
    background-color: rgb(10, 134, 6);
    /* Color de acento primario (contraste con el de moderador) */
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.back-button:hover {
    background-color: #044607;
    box-shadow: 0 0 10px rgba(71, 255, 34, 0.5);
}

/* Efecto de fondo (Mantenemos el de la vista anterior) */
/* .glitch-effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.05);
    pointer-events: none;
    animation: glitch-pulse 10s infinite ease-in-out;
    z-index: -1;
}

@keyframes glitch-pulse {

    0%,
    100% {
        clip-path: inset(0 0 0 0);
    }

    10% {
        clip-path: inset(20% 0 70% 0);
    }

    20% {
        clip-path: inset(45% 0 5% 0);
    }

    30% {
        clip-path: inset(10% 0 80% 0);
    }

    40% {
        clip-path: inset(60% 0 10% 0);
    }

    50% {
        clip-path: inset(5% 0 40% 0);
    }

    60% {
        clip-path: inset(75% 0 15% 0);
    }

    70% {
        clip-path: inset(30% 0 60% 0);
    }

    80% {
        clip-path: inset(50% 0 35% 0);
    }

    90% {
        clip-path: inset(5% 0 85% 0);
    }
} */