/* Estilos del Archivo 1 */
form>div {
    display: flex;
    flex-flow: column nowrap;
}

.inputStyle {
    margin: 5px 0px 30px 0px;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 0.5em;
    width: 100%;
}

.checkStyle {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 0.5em;
}

strong {
    font-weight: bold;
}

button {
    padding: 0.5em 1em;
    border: none;
    border-radius: 0.5em;
    background-color: var(--celeste-pajero);
    color: white;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    height: 80px;
    text-align: center;
    color: black;
    margin-bottom: 25px;
}

button:hover {
    background-color: black;
    color: white;
    transition: all 0.5s;
}

.accept {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
    text-align: center;
}

select {
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 200px;
}

/* Estilos del Archivo 2 */
.loader {
    display: none;
    align-items: center;
    width: 100%;
    height: 30px;
    justify-content: center;
    transition: all 0.5s;
}

.loader img {
    width: 20px;
    height: 20px;
    transition: all 0.5s;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="checkbox"]:checked::after {
    content: "✔";
    position: relative;
    left: 3px;
    top: -3px;
    color: green;
    font-size: 18px;
    line-height: 18px;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0.5em;
    resize: none;
    font-family: Arial, sans-serif;
    font-size: 0.7em;
}

#mensaje {
    margin: -10px 0px 20px 0px;
    font-size: 1em;
    text-align: center;
    transition: all 0.5s;
}

.form-options-buttons {
    display: none;
    flex-flow: row wrap;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
}

.form-options-buttons button {
    width: 45%;
    height: 40px;
    background-color: var(--celeste-pajero);
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.form-options-buttons button i {
    margin-right: 10px;
}

.form-options-buttons button:hover {
    background-color: black;
    color: white;
    transition: all 0.5s;
}

@media screen and (max-width: 600px) {
    .form-options-buttons button {
        width: 100%;
        height: 60px;
    }
}