:root {
    --primary-color: rgba(10, 25, 47, 0.8);
    --secondary-color: rgba(17, 34, 64, 0.6);
    --accent-color: #00BFFF;
    --success-color: #00FF7F;
    --warning-color: #ff9c18;
    --error-color: #FF4C4C;
    --border-color: rgba(255, 255, 255, 0.2);
    --text-color: #E5E7EB;
    --input-bg: rgba(25, 50, 75, 0.4);
    --shadow-color: rgba(0, 255, 255, 0.3);
    font-family: 'Source Code Pro', monospace;
}

body {
    background: linear-gradient(to right, #0F172A, #1E293B);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0.5px, transparent 1px);
    background-size: 20px 20px;
}

.monitor-container {
    background: var(--primary-color);
    padding: 2rem;
    padding-bottom: 6rem; 
    border-radius: 12px;
    box-shadow: 0 0 10px var(--shadow-color);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    width: 350px;
    min-height: 400px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

#login-container {
    position: relative;
}
/* Imagen logo */
.logo-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin-top: 30px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

/* Imagen logo sin margin ahora */
.nedrysystems-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ffbc00e0;
    border: 2px solid #9d4827;
    box-shadow: 0 0 10px rgba(255, 188, 0, 0.7);
    animation: glowPulse 2s infinite ease-in-out;
    position: relative;
    z-index: 1;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 188, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 188, 0, 0.9);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 188, 0, 0.5);
    }
}



/* Sweep centrado correctamente */
.sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.sweep::before {
    content: '';
    position: absolute;
    top: -75%;
    left: -75%;
    width: 250%;
    height: 250%;
    background: linear-gradient(115deg, rgba(255,255,255,0) 45%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 55%);
    transform: rotate(20deg);
    animation: sweep 5s infinite linear;
    border-radius: 50%;
    filter: blur(1px); /* suaviza los bordes */
    opacity: 0.6;
}

@keyframes sweep {
    0% {
        transform: translateX(-80%) rotate(20deg);
    }
    100% {
        transform: translateX(80%) rotate(20deg);
    }
}




#beta-badge {
    position: fixed;
    top: 10px;
    right: 15px;
    font-size: 0.7rem;
    font-family: 'Source Code Pro', monospace;
    color: rgba(255, 100, 100, 0.8);
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.4);
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    user-select: none;
    pointer-events: none;
}

.soon-text  {
    position: absolute;
    left: 47%;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(0, 200, 255, 0.7);
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(0, 200, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5);
}

#nedry-footer {
    position: fixed;
    bottom: 10px;
    right: 15px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(0, 200, 255, 0.7);
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(0, 200, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5);
}


.coming-soon-text {
    margin-top: 30px;
    text-align: center;
    font-size: 1rem;
    font-family: 'Source Code Pro', monospace;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 0 5px var(--accent-color),
        0 0 10px rgba(0, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.2);
    opacity: 0.85;
    user-select: none;
    pointer-events: none;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        text-shadow: 
            0 0 5px var(--accent-color),
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 
            0 0 10px var(--accent-color),
            0 0 20px rgba(0, 255, 255, 0.7),
            0 0 30px rgba(255, 255, 255, 0.4);
    }
    100% {
        text-shadow: 
            0 0 5px var(--accent-color),
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.2);
    }
}



/* Eliminar el spinner en inputs number */
/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    margin: 0;
}







