body {
    font-family: Arial, sans-serif;
    font-size: 13px;
    margin: 0;
    padding: 10px 20px;
}

h1 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 5px;
}

h2 {
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 15px;
}

fieldset {
    border: 1px solid #000;
    margin-bottom: 12px;
    padding: 10px 15px;
}

legend {
    font-weight: bold;
    font-size: 0.9em;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 2px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 160px;
    padding: 2px 4px;
    border: 1px solid #999;
    font-size: 13px;
    transition: background-color 0.2s;
    cursor: pointer;
}

input[type="text"]:hover:not(:focus):not(.enfoque) {
    background-color: #ffe0f0;
    border-color: #c06;
}

input[type="email"]:hover:not(:focus):not(.enfoque) {
    background-color: #d0f0ff;
    border-color: #06c;
}

input[type="password"]:hover:not(:focus):not(.enfoque) {
    background-color: #e0ffe8;
    border-color: #080;
}

select:hover:not(:focus):not(.enfoque) {
    background-color: #fff3cc;
    border-color: #c90;
}

input.enfoque,
select.enfoque {
    background-color: red;
    color: white;
}

.fecha-grupo {
    display: flex;
    gap: 4px;
    margin-top: 2px;
}

.fecha-grupo select {
    width: auto;
}

.condiciones-texto {
    margin: 6px 0 4px 0;
}

.radio-grupo {
    display: flex;
    gap: 12px;
    margin-top: 3px;
}

.radio-grupo label {
    font-weight: normal;
    display: inline;
}

.checkbox-grupo {
    margin-top: 8px;
}

.checkbox-grupo label {
    font-weight: normal;
    display: inline;
}

.btn-container {
    text-align: center;
    margin-top: 15px;
}

button {
    padding: 8px 40px;
    font-size: 1em;
    cursor: pointer;
    background-color: white;
    border: 1px solid #999;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #cce5ff;
    border-color: #06c;
}