
/* Fuente base */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Encabezado */
h1, h2 {
    text-align: center;
    color: #b30000; /* rojo oscuro */
}

/* Contenedor principal */
.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Formularios y campos */
.regisFrm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.regisFrm select,
.regisFrm input[type="date"],
.regisFrm input[type="email"],
.regisFrm input[type="password"],
.regisFrm input[type="text"] {
    padding: 10px;
    border: 1px solid #999;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

/* Botón de envío */
.send-button input[type="submit"] {
    background-color: #b30000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.send-button input[type="submit"]:hover {
    background-color: #800000;
}

/* Enlaces */
a {
    color: #b30000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Mensajes de estado */
.success {
    color: green;
    text-align: center;
}

.error {
    color: red;
    text-align: center;
}

/* CAPTCHA */
.captcha-image {
    display: block;
    margin: 10px 0;
    max-width: 100%;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    .regisFrm {
        gap: 10px;
    }

    .send-button input[type="submit"] {
        font-size: 14px;
        padding: 10px;
    }
}
