/* Estilo para ocultar la ventana modal por defecto */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Estilo para el contenido de la ventana modal */
.modal-contenido {
    background-color: #fdfbf8;
    margin: 10px auto;
    padding: 40px;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    top: 20%;
    border-radius: 10px;
}

/* Estilo para el botón de cerrar */
.cerrar-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Estilo para etiquetas y campos de entrada */

button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}

.btn.btn-submit {
    margin: auto;
    display: flex;
}

#formularioRecuperacion {
    padding: 20px;
    text-align: left;
}


/* Estilo para el botón */
button {
    font-weight: bold;
    background-color: #95b736;
    padding: 10px;
    position: relative;
    font-size: 12px;
    text-decoration: none;
    color: white;
    border: solid 1px #668513;
    _background-image: linear-gradient(bottom, #cddc8b 0%, #83aa32 100%);
    _background-image: -o-linear-gradient(bottom, #cddc8b 0%, #83aa32 100%);
    _background-image: -moz-linear-gradient(bottom, #cddc8b 0%, #83aa32 100%);
    _background-image: -webkit-linear-gradient(bottom, #cddc8b 0%, #83aa32 100%);
    _background-image: -ms-linear-gradient(bottom, #cddc8b 0%, #83aa32 100%);
    _background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #cddc8b), color-stop(1, #83aa32));
    -webkit-box-shadow: inset 0px 1px 0px #CCC, 0px 1px 0px white;
    -moz-box-shadow: inset 0px 1px 0px #CCC, 0px 1px 0px #fff;
    box-shadow: inset 0px 1px 0px #CCC, 0px 1px 0px white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}


fieldset {
    display: flex;
    margin-inline-start: 2px;
    margin-inline-end: 2px;
    padding-block-start: 0.35em;
    padding-inline-start: 0.75em;
    padding-inline-end: 0.75em;
    padding-block-end: 0.625em;
    min-inline-size: min-content;
    border: none;

}

legend {
    font-size: 0;
}

#formularioCodigoRecuperacion {
    text-align: center;
}

.input-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 28px 28px 56px #d9d9d9, -28px -28px 56px #ffffff;
    margin: 10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


#formcodigo {
    display: inline-table;
}

@media only screen and (max-width: 1300px) {
    .input-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        text-align: center;
        border: none;
        border-radius: 0.5rem;
        background: linear-gradient(145deg, #e6e6e6, #ffffff);
        box-shadow: 28px 28px 56px #d9d9d9, -28px -28px 56px #ffffff;
        margin: 5px;
    }
}

@media only screen and (max-width: 600px) {
    .titulo-sitio-01 {
        text-transform: uppercase;
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        text-align: center;
        width: 50%;
        padding: 5px;
        margin: auto;
        background: #fdfbf8;
        font-size: 20px;
        color: #7f7f7f;
    }

    .input-number {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1rem;
        text-align: center;
        border: none;
        border-radius: 0.5rem;
        background: linear-gradient(145deg, #e6e6e6, #ffffff);
        box-shadow: 28px 28px 56px #d9d9d9, -28px -28px 56px #ffffff;
        margin: 5px;
    }
}

