﻿/* Estilo base */
body {
   
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.modern-header {
    font-family: 'Orbitron', sans-serif; /* Puedes usar Orbitron o Rajdhani, futuristas */
    text-align: center;
    padding: 3rem 1rem;
    background-color: #fff;
    border-bottom: 1px solid #282828;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.4);
    width: 90%;
    margin-top: -13%;
}

.futuristic-title {
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 20px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(to right, #000, #f0dbe2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.high-tech-divider {
    width: 120px;
    height: 3px;
    margin: 1rem auto;
    background: linear-gradient(to right, #000, #f0dbe2);
    border-radius: 3px;
}

.modern-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #333333;
    margin-top: 0.5rem;
}
/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 30px;
        margin: 20px;
    }

    .futuristic-title {
        font-size: 2.5rem;
    }

    .modern-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

/* Efectos de animación */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow: 0 0 15px currentColor, 0 0 25px currentColor, 0 0 50px currentColor;
    }

    20%, 24%, 55% {
        opacity: 0.7;
        text-shadow: none;
    }
}

@keyframes flicker-back {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 0.7;
    }

    20%, 24%, 55% {
        opacity: 0.3;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Efecto de tubo de neón */
.neon-text::before,
.neon-subtext::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 4px rgba(255, 255, 255, 0.1);
}

.input-field {
    color:#333333!important;
}
@media (max-width: 480px) {


    .title-container {
        position: relative;
        padding: 2rem 3rem;
        isolation: isolate;
        margin-top: -32% !important;
        width: 98% !important;
        padding-left: 0%;

    }
    .toggle-password {
        margin-top: 2% !important;
        margin-right: 9% !important;
    }
}



@media screen and (width: 820px) and (height: 1180px) {
    .login-form {
        width: 100% !important;
        margin-top: -20px;
    }

    .title-container {
        position: relative;
        padding: 2rem 3rem;
        isolation: isolate;
        margin-top: -40% !important;
        width: 98% !important;
        padding-left: 0%;
    }

    .toggle-password {
        margin-top: 10% !important;
        margin-right: 9% !important;
    }
}


@media (max-width: 768px) {
    .login-form {
        width: 90% !important;
    }

    .title-container {
        position: relative;
        padding: 2rem 3rem;
        isolation: isolate;
        margin-top: -20% !important;
        width: 98% !important;
        padding-left: 0%;
    }
    .toggle-password {
        margin-top: 2% !important;
        margin-right: 9% !important;
    }
    
}
