.cont-solicitar-caso{
    width: 100%;
    height: 40rem;
    margin: 3rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cont-solicitar-caso > h1 {
    color: #0d41a1;
    font-weight: 800;
    font-size: 2rem;
    padding: 1rem;
}
.form-solicitar-caso{
    width: 100%;
    max-width: 51.8rem;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0rem 0rem 0.5rem 0.5rem rgba(13, 65, 161, 0.337);
    border-radius: 2rem;
}
.cont-form-section{
    width: 100%;
    margin: 0.5rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
}
.cont-form-section > h1{
    color: #0d41a1;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0.5rem 0rem;
}
.sect-datos-empresa,
.sect-datos-solicitante,
.sect-datos-solicitud {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}
.areasolucion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.areasolucion > label {
    font-size: 1rem;
    font-weight: 600;
    color: #0d41a1;
}
.descripcion-datos-solicitud{
    width: 100%;
}
.selectareasolucion > option{
    color: #0d41a1;
}
.selectareasolucion > option:checked{
    background-color: #0d41a1;
    color: #fff;
}
.selectareasolucion > option:focus{
    background-color: #0d41a1;
    color: #fff;
}
.sect-datos{
    width: 100%;

}
.cont-form-campos > textarea{
    width: 100%;
    height: 8rem;
    margin: 0rem 0.5rem;
    border-bottom: 0.1rem solid #0d41a1;
    border-radius: 0.1rem;
    background-color: #fff;
    font-size: 1rem;
    font-weight: 400;
    color: #0d41a1;
}
.sect-datos > input,
.areasolucion > input,
.areasolucion > select {
    width: 15rem;
    height: 2rem;
    margin: 0rem 0.5rem;
    border-bottom: 0.1rem solid #0d41a1;
    border-radius: 0.1rem;
    background-color: #fff;
    font-size: 1rem;
    font-weight: 400;
    color: #0d41a1;
}
.cont-form-campos > input::placeholder, 
.cont-form-campos > select::placeholder, 
.cont-form-campos > textarea::placeholder {
    font-size: 1rem;
    font-weight: 400;
    color: #0d41a1;
}
.cont-form-campos > input:focus, 
.cont-form-campos > select:focus, 
.cont-form-campos > textarea:focus {
    outline: none;
    resize: none;
    border-bottom: 0.1rem solid #FCC02D;
}
.buttom-enviar{
    width: 5rem;
    height: 2rem;
    background-color: #0d41a1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}
.buttom-enviar:hover{
    background-color: #fff;
    color: #0d41a1;
    box-shadow: 0rem 0rem 0.1rem 0.1rem rgba(13, 65, 161, 0.337);
}

