* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

            font-family: 'Arial', sans-serif;
            background-color: #d3d3d3;
            color: #333;
            line-height: 1.6;
            padding: 2rem;
            justify-content: center;
            align-items: center;

}

.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-left: 35%;
   
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #0056b3;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

select, input, button {
    margin-top: 8px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

button {
    background-color: #0056b3;
    color: white;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color:forestgreen;
}

.boton-block {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
}

.contenedor-resultados {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

.titulo {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.texto {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.etiqueta {
    font-weight: bold;
    color: #007bff;
}

.valor {
    font-size: 18px;
    color: #28a745;
    font-weight: bold;
}

.mensaje-error {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    background-color: #ffebee;
    border-left: 5px solid #d32f2f;
    border-radius: 8px;
    color: #d32f2f;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.mensaje-error p {
    margin: 0;
    font-weight: bold;
}
/* Baner */
header {
    background: #1f2937;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    position: relative;
}
header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Footer fijo en la parte inferior */
footer {
    margin-top: 2rem;
    padding: 15px;
    background: #333;
    color: white;
    font-size: 14px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.informacion {
    font-weight: bold;
    color: brown;
    font-size: 10px;

}
.informacion_importante {
    font-weight: bold;
    color:#d32f2f;
    font-size: 11px;
    font-weight: bold;
}

.linea {
    font-weight: bold;
    color: #0056b3; 

}

.msguser {
    color: green; 
    font-size: 0.9em;
}

.btn {
    display: block;
    margin: 16px auto;
    padding: 8px 18px;
    width: 100%;
    text-align: center;
    background-color: #0056b3;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none; 
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
}
.btn:hover {
    background-color:darkkhaki;
}

.manual {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
.manual:hover {
    background-color: #003d80;
}

.container_manual {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    margin-left: 12%;
   
}
.titulo_m {
    font-size: 25px;
    color:darkgreen;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

ol, ul {
    text-align: start;
}
li {
    margin-bottom: 8px;
}
li::marker {
    color:brown; /* Cambia solo el color de los números */
    font-weight: bold; /* Opcional: hace los números más gruesos */
}

.resaltar_m {

    text-decoration: underline;
}

h4 {

    text-align: justify;

}

.imgm {
    
    display: block;
    margin: auto;
}

.site {
    color: #0056b3;  /* Color inicial del enlace */
    text-decoration: none;  /* Quita el subrayado */
}

.site:visited {
    color: #0056b3;  /* Mantiene el mismo color después de hacer clic */
}

.site:hover {
    color: #ff6600;  /* Cambia el color cuando pasas el mouse por encima */
}

.site:active {
    color: #003366;  /* Color cuando se está haciendo clic */
}

.recuadro {
    border: 2px solid black;  /* línea negra */
    padding: 10px;            /* espacio interno */
    width: fit-content;       /* ancho ajustado al contenido */
  }