/* General Body Styles */
.login-body {
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #0a192f; /* Deep blue background fallback */
    background-image: url('/image/world.svg'); /* World map background */
    background-size: cover;
    background-position: center;
    color: #e6f1ff; /* Light text color */
}

/* Login Container */
.login-container {
    background-color: rgba(10, 25, 47, 0.85); /* Translucent deep blue */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 380px;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Login Header */
.login-header {
    margin-bottom: 30px;
}

.emblem {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 50%; /* Imagen circular */
    border: 3px solid #00ffff; /* Borde más grueso y brillante */
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7), 
                0 0 50px rgba(0, 255, 255, 0.5); /* Glow extra */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animación suave */
}

.emblem:hover {
    transform: scale(1.1); /* Agranda la imagen al pasar el mouse */
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.9),
                0 0 70px rgba(0, 255, 255, 0.7);
}

.login-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 1px;
    color: #00ffff; /* Neon cyan text */
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
}

.sub-header {
    margin-top: 5px;
    font-size: 14px;
    color: #00ffff;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #8892b0;
}

.form-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    background-color: rgba(23, 42, 69, 0.7);
    border: 1px solid #132d46;
    border-radius: 5px;
    color: #e6f1ff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #64ffda;
    border: none;
    border-radius: 5px;
    color: #0a192f;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.login-btn:hover {
    background-color: #52d8bA;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
}

/* Warning Footer */
.warning-footer {
    margin-top: 30px;
    font-family: 'VT323', monospace;
    color: #ff4d4d; /* Red */
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 77, 77, 0.7);
    text-transform: uppercase;
}


