body {
  background: linear-gradient(to right, #2347ab 50%, #ffffff 50%);
  height: 100vh;
  margin: 0;
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('../../assets/img/hc.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.div-login-form {
  width: 80%;
  /* padding: 15%; */
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 5%;
}

#usuario-input {
  margin-top: 15px;
  margin-bottom: 10px;
}

#password-input {
  margin-bottom: 10px;
  /* margin-bottom: 20px; */
}

/* Para el input de confirmar contraseña de /registro */
#password-input-2 {
  margin-bottom: 10px;
}

/* Media Query para móviles */

@media (max-width: 767px) {
  body::before {
    width: 100%;
    height: 40%;
    background-image: none;
  }
}

@media (max-width: 767px) {
  .div-login-form {
    width: 100%;
    padding: 10%;
  }
}

/* Establece el tamaño de las fuentes y otros ajustes */

@media (max-width: 767px) {
  #usuario-input, #password-input {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body {
    background: #ffffff;
  }
}

@media (max-width: 767px) {
  .heading-principal {
    display: none;
  }
}

.col-izquierdo {
  padding: 60px;
}

#select-rol {
  margin-bottom: 10px;
}

#mail-img {
  width: 10em;
  margin-bottom: 2em;
}