/* CONTENEDOR GENERAL */

body {
background: linear-gradient(130deg, #f8f8f8 0%, #fff1f6 100%);

}
.contenedor-reclamaciones {
    margin: 50px;
}

.libro-reclamaciones-wrapper{
display: block;
max-width:750px;
margin:auto;
padding:40px 20px;
font-family:Arial, Helvetica, sans-serif;


}

/* CAJA FORMULARIO */

.libro-reclamaciones-formulario{
background:rgb(255, 255, 255);
padding:30px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* TITULOS */

.libro-reclamaciones-titulo{
    font-size: 30px;
text-align:center;
margin-bottom:5px;
color: #231616;
}

.libro-reclamaciones-subtitulo{
text-align:center;
color:#777;
margin-bottom:25px;
font-size: 15px;
}

.libro-seccion{
margin-bottom:25px;
}

.libro-seccion h3{
    font-size: 23px;
margin-bottom:10px;
color:#1f3c88;
}

/* CAMPOS */

.libro-campo{
margin-bottom:15px;
}

.libro-campo label{
display:block;
font-size:14px;
margin-bottom:5px;
font-size: 15px;
}

.libro-campo input,
.libro-campo select,
.libro-campo textarea{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:4px;
font-size:14px;
}

.libro-campo textarea{
height:120px;
resize:none;
}

/* BOTON */

.libro-boton-enviar{
width:100%;
padding:12px;
background:#1f3c88;
color:white;
border:none;
border-radius:5px;
font-size:16px;
cursor:pointer;
}

.libro-boton-enviar:hover{
background:#162e66;
}

/* AVISO LEGAL */

.libro-aviso-legal{
font-size:12px;
color:#555;
margin-top:15px;
text-align:center;
}

/*botón de volver de reclamaciones */
.btn-contenedor-reclamaciones {
display: block;
padding: 20px 0 ;

}
.btn-reclamaciones-volver{
    color:#231616;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:0.3s;
}

.btn-reclamaciones-volver:hover{
color:#e68aa6;
}

/*RESPONSIVE PARA TABLETS */

@media (max-width:750px) {
   
    .contenedor-reclamaciones {
         margin: 15px;
    }
}

@media (max-width:500px) {
    .libro-reclamaciones-titulo {
        font-size: 25px;
    }
   
    .contenedor-reclamaciones {
         margin: 15px;
    }
    .libro-reclamaciones-wrapper{
        padding: 0;
    }
    .libro-reclamaciones-formulario {
        padding: 15px;
    }
    .libro-seccion h3 {
        font-size: 20px;
    }
}
