
/* Modal - fondo bloqueante */
.modal {
    display: flex; /* Oculto por defecto */
    position: fixed;
    z-index: 1000; /* Encima de todo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*overflow: auto;*/
    /* centrado */
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
}

.hidden{
    display: none !important;
}
/* Ocultar inicialmente */
.modal.hidden {
    display: none;
}
/* Contenido del modal */
.modal-content {
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    background-color: #000000;
    margin: 15% auto; /* Centrado vertical y horizontal */
    padding: 20px;
    border: 1px solid #888;
    width: 20em;
    border-radius: 2em;
    border-color: #00FF00;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Botón de cerrar */
.close {
    color: #00FF00;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: white;
}
#loginForm {
    width: 100%;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.form-row label {
    width: 100px; /* ancho fijo para alinear */
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
}

.form-row input {
    flex: 1;
    padding: 5px;
}

.buttons {
    background-color: black;
    color: #00ff00;
    justify-content: center;
    border: 1px solid #00ff00;
    border-radius: 1em;
    width: auto;
}