body{
   /* background: url('../image/fondo_cse.png') center top no-repeat !important;*/
    background-image: linear-gradient(180deg, #000000FA 0%, #3750FF 76%);
    background-size: 100vw 100vh !important;
    background-attachment: fixed !important;
    margin: 0 !important;
    background-size: cover !important;
}

form {
    width: 450px;
    margin: auto;
    background: rgba(0, 90, 115, 0.5);
   /* border: 1px solid #0dcbff;*/
    border: 1px solid #d7f6ff;
    padding: 50px 30px;
    box-sizing: border-box;
    margin-top: 55px;
    border-radius: 7px;
}

h2 {
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 30px;
    margin-bottom: 20px;
}
img {
    display: block; /* Asegura que la imagen sea un bloque */
    margin: auto; /* Centra la imagen horizontalmente */
    max-width: 100%; /* Limita el ancho máximo al 100% del contenedor */
    height: auto; /* Ajusta automáticamente la altura según el ancho */
    margin-bottom: 20PX;
}
input, textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 17px;
    border: none;
    border-radius: 17px;
}

#boton {
    background: #007bff;
    padding: 20px;
    border-radius: 17px;

}

#boton:hover {
    cursor: pointer;
}

@media (max-width: 480px) {
    form{
        width: 100%;
    }

}

