*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.divHeaderFormulario{
    min-height: 7vh;
    max-width: 100%;
    background-color: #9e3232;
    display: flex;
    align-items: center;
    padding-inline: 20px;
    padding-block: 20px;
}

.divHeaderFormulario h2{
    margin-left: 20px;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.divHeaderLogo{
    background-color: #f5f5f5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;

}

.divHeaderLogo img{
    width: 100%;
}

/* =============================== */

.divContenedorCuerpo{
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 85vh;
}
.textoDescripcion{
    text-align: center;
}

.divContenedorCuerpo p{
    margin: 10px;
    max-width: 700px;
}
.divContenedorTexto{
    text-align: center;
    padding: 10px;
    margin: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.divContenedorTexto h1{
    font-weight: bold;
    font-size: 2.6rem;
    text-align: center;
}

.divContenedorTexto p{
    font-size: 1.1rem;
    font-weight: bold;
}

.divContenedorFormulario{
    min-width: 40%;
    background-color: #f5f5f5;
    border-radius: 10px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px;
    padding: 1.5rem;
}

.divContenedorFormulario label{
    font-weight: bold;
}

.divContenedorRadios{
    display: flex;
    justify-content: center;
    margin: 15px 0 20px;
}

.divContenedorRadios label{
    margin-right: 40px;
    
}

.divContenedorFormulario p{
    margin: 20px;
    font-size: 1.1rem;
    font-weight: bold;
}
.divContenedorFormulario a{
    color: #9e3232;
    text-decoration: none;
}

.divContenedorFormulario a:hover{
    text-decoration: underline;
}

.divContenedorFormulario input[type=text], .divContenedorFormulario input[type=email], .divContenedorFormulario input[type=password] {
    width: 320px;
    padding: 10px;
    padding-right: 30px;
}

.divContenedorFormulario select{
    width: 300px;
    padding: 10px;
    margin-bottom: 10px;
}

.divContenedorFormulario button{
    margin: 20px;
    width: 320px;
    background-color: #9e3232;
    border: none;
    color: white;
    padding: 10px;
}
.divContenedorFormulario button:hover{
    background-color: #b24444;
    color: white;
}


.divContenedorFormulario .btn-cancelar{
    background-color: #9e3232;
    color: white;
    width: 130px;
}

.ocultar{
    display: none;
}

/* ==============MODAL que venia================ */

.modalSvg{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 20px;
}

/* .texto-modal{
    text-align: center;
    width: 280px;
    margin-block: 10px;
} */

.botonesModal{
    display: flex;
    justify-content: space-around;
    margin: 10px;
    padding: 10px;
}

.botonesModal button{
    width: 160px;
    padding: 10px;
}


/* ==============MODAL================ */

.listaModal{
    font-weight: bold;
    margin: 10px;
}

.textoListaModal{
    margin-left: 10px;
    margin-right: 30px;
    /* border: solid 1px black; */
}

.textoModal{
    margin-inline: 20px;
}

.btnModal{
    background-color: #9E3232;
    border: none;
    width: 300px;
    padding: 10px;
    color: white;
    border-radius: 5px;
}

.btnModal:hover{
    background-color: #bb6565;
}

.modal-body{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tituloIntermedio, .titulo-modal{
    color: #9E3232;
    font-weight: bold;
}

.linkModal{
    color: #9E3232;
}

/* -----------FOOTER------------ */

.divTextoFooter{
    min-height: 8vh;
    background-color: #9e3232;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 16px;
}

.divTextoFooter p{
    margin: 4px ;
    text-align: center;
}


.textoAyuda{
    max-width: 320px;
}