body {
    background-color: #fecc0d;
    margin: 0;
    padding: 0;
}

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

/* Etiquetas */
label {
    font-weight: 600;
    color: #555555;
    display: block;
    margin-bottom: 0.5rem;
}

/* Inputs de texto, selects y textareas */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 1rem;
    color: #333333;
    background-color: #e9ecef;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Select personalizado */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
}

/* Estilos hover en campos de entrada */
input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover {
    background-color: #dfe3e6;
}

/* Estilos de foco en campos de entrada */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #FFD700;
    background-color: #f8f9fa;
    outline: none;
}

/* Botón */

button[type="button"] {
    padding: 0.7rem 1rem;
    background-color: #FFD300;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover para el botón */
button[type="button"]:hover {
    background-color: #FFC900;
    border-color: #cdae00;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

/* Hover para textarea */
textarea:hover {
    background-color: #dfe3e6;
    border-color: #FFC300;
}

/* Foco para textarea */
textarea:focus {
    border-color: #FFD700;
    background-color: #f8f9fa;
    outline: none;
}

/* Grupo de radio buttons */
.radio-group {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.radio-group input[type="radio"] {
    margin-right: 5px;
}

/* División en filas y columnas con flexbox */
.content {
    margin-bottom: 1rem;
}

.content > div {
    flex: 1;
    padding-right: 1rem;
}

.content > div:last-child {
    padding-right: 0;
}

/* Estilos para el contenedor del título */
.title-container {
    border-left: 4px solid #FFD700; /* Línea amarilla */
    padding-left: 10px; /* Espacio entre la línea y el texto */
    margin-bottom: 1rem;
}

/* Estilos para los textos del título */
.title-container h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #333333;
}

.title-container h4 {
    margin: 0;
    font-size: 1rem;
    color: #555555;
}