@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;700&display=swap');


body {
  margin: 0px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 0 !important;
  margin: 0px !important;
}

.clear {
  clear: both;
}

.container_web {
  position: relative;
  margin-top: 0px !important;
  width: 100% !important;
  min-height: calc(100vh - 0px);
  flex-grow: 1;
  padding-right: 0px !important;
  padding-left: 0px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: url('../../assets/img/fondo_login.png') no-repeat center center fixed;
  background-size: cover;
  text-align: center;
}

.logo_head {
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
  padding: 15px;
}

.formulario_login {
  background-color: #425ba6cf;
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  padding-bottom: 40px;
}

.titulo_login {
  color: white;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}

#login-form {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}

.form-group {
  padding: 0px;
}

.form-control {
  border-radius: 20px;
  text-align: center;
}

.btn_entrar {
  background-color: #1cfffe;
  border-radius: 20px;
  color: #425ba6;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px;
}

.boton_descarga {
  background-color: #1ca4ff;
  border-radius: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.patrocinadores {
  background-color: #ffffff;
  padding: 15px;
  min-height: 50px;
  text-align: center;
}

.patrocinadores .pc {
  width: 100%;
  max-width: 1200px;
}
.patrocinadores .movil {
  display: none;
  width: 100%;
  max-width: 770px;
}

.logo_geico {
  text-align: left;
}
.logo_geico img{
  max-width: 150px;
  margin-top: 20px;
}
.logo_soporte {
  text-align: right;
}
.logo_soporte img{
  max-width: 150px;
  margin-top: 20px;
}

.modal-footer .btn{
  background-color: #1ca4ff;
  border-radius: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
}

@media (max-width: 770px) {
  .patrocinadores .pc {
    display: none;
  }
  .patrocinadores .movil {
    display: block;
  }
}