@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");

html,
body {
  margin: 0;
  padding: 0 !important;
  width: 100%;
  font-family: "Roboto", sans-serif;
  background: url(../images/login/background.jpg) no-repeat center/cover;
  color: #666666;
  font-size: 14px;
  width: 100%;
  height: 100%;
  position: relative;
}

.source_sans_pro {
  font-family: "Source Sans Pro", sans-serif;
}

.monserrat {
  font-family: "Montserrat", sans-serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.contenedor_principal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 390px;
  background: rgba(21, 21, 21, 0.8);
  margin-top: -195px;
  margin-left: -450px;
}

.contenedor_formulario {
  position: relative;
  height: 470px;
  margin-top: -50px;
}

.copy {
  position: absolute;
  bottom: 5px;
  left: 0;
}

.btn_yellow {
  background-color: var(--main-color);
  background-image: url("../images/backend/register-arrow.png");
  background-position: right 15px center;
  background-repeat: no-repeat;
  color: white !important;
  border-radius: 25px !important;
  padding: 10px 85px 10px 25px;
  box-shadow: inset 0px -3px 0px 0px var(--shaded-color);
  border: none !important;
}

.btn_yellow:focus,
.btn_yellow.focus {
  box-shadow: inset 0px -3px 0px 0px var(--shaded-color) !important;
}

label.error {
  color: red;
  font-size: 11px;
}

.campos-form-sm {
  display: none;
}
.view_sm {
  display: none;
}

@media (max-width: 991px) {
  html,
  body {
    background-position: right;
  }
  .view_lg {
    display: none;
  }
  .view_sm {
    display: block;
  }
  .campos-form-sm {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
  }
  .contenedor_principal {
    width: 100%;
    display: flex;
    height: 100%;
    top: initial;
    bottom: initial;
    margin: 0;
    background-color: transparent;
    left: initial;
  }

  .container-logo-sm {
    width: 80vw;
    margin: auto;
    text-align: center;
    color: white;
  }

  .campos-form-sm .form-login-sm {
    position: absolute;
    bottom: 0;
    height: auto;
    overflow: hidden;
    background-color: white;
    width: 90%;
    right: 5%;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}


.img-logo-form-ingreso {
  width: 120px;
  height: auto;
  margin: auto;
}