/* Estilos generales del body */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    background-color: #ebebeb;
}

/* Contenedor del formulario */
.cuadro_form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Formulario */
#formulario {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Título del formulario */
.titulo_form {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

/* Labels del formulario */
.label_form {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Inputs del formulario */
.input_form {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input_form:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Input tipo file personalizado */
input[type="file"].input_form {
    padding: 0.5rem;
    background-color: #f8f9fa;
}

/* Input tipo color personalizado */
input[type="color"].input_form {
    height: 40px;
    padding: 0.2rem;
    cursor: pointer;
}

/* Botón del formulario */
.btn_form {
    background-color: #3498db;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn_form:hover {
    background-color: #2980b9;
}

/* Cuadro de respuesta */
#cuadro_respuesta {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
}

.contenedor {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: Arial, sans-serif;
}

.contenedor h2 {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.contenedor img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contenedor h3 {
    color: #555;
    font-size: 18px;
    text-align: center;
}

.contenedor p {
    color: #444;
    line-height: 1.6;
}

.fecha {
    color: #777;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.contenedor label {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #007BFF; /* Color azul bonito */
    margin-top: 15px;
    cursor: pointer; /* Hace que aparezca la manita */
    text-decoration: none;
}

.bien {
    background-color: green;
    padding: 30px;
    margin: 10px;
}

.mal {
    background-color: red;
    padding: 30px;
    margin: 10px;
}