@font-face {
  font-family: "Abel", sans-serif;
  
}


* {
  font-family: "Abel", sans-serif;
}

:root {
  --input-padding-x: 1.5rem;
  --input-padding-y: 0.75rem;
}

.login,
.image {
  min-height: 50vh;
  max-width: 40vw;
  background: white;
  margin-top: auto;
  margin-bottom: auto;
}

#form-container{
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  background-color: white;
  min-width: 30vw;
  width: 350px;
  min-height: 90vh;
}

.wrapper{
  width: 99vw;
  height: 99vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2em;
  padding-bottom: 2em;
  height: 100vh;
}

.wrapper::before{
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  display: block;
  background-image: image-set("../img/fondo-uca.webp");
  /* filter: blur(3px);
  -webkit-filter: blur(3px); */
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.login-logotype{
  width: 60%;
  min-width: 275px;
  padding-left: 2em;
  height: auto;
}

.login-heading {
  font-weight: bold;
}

.btn-login {
  font-size: 0.9rem;
  font-weight: bolder;
  letter-spacing: 0.05rem;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > label {
  padding: var(--input-padding-y) var(--input-padding-x);
  height: auto;
  border-radius: 2rem;
}

  .ms-btn:hover {
    cursor: pointer;    
  }
  .ms-btn {
    display: inline-flex;
    align-items: center;
    height: 41px;
    padding: 0 12px;
    background: #FFFFFF;
    border: 1px solid #8C8C8C;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    width: 233px;
    color: #5E5E5E;
    border-radius: 4px;
  }

  .ms-logo {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }

  .ms-text {
    line-height: 1;
    font-family: 'Segoe UI', sans-serif;

  }

  .ms-btn:hover {
    background: #F3F3F3;
  }


.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  cursor: text;
  /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.google-badge-class{
  width: 150px;
  height: auto;
}

.separator{
  border-top: 1px solid rgba(128, 128, 128, 0.30);
  margin-bottom: 1em ;
}

/* Fallback for Edge
  -------------------------------------------------- */
@media screen and (max-width: 1024px) {
  #form-container{
    width: 50vw;
  }

}
@media screen and (max-width: 695px) {
  #form-container{
    width: 80vw;
  }
}

@media screen and (max-width: 436px) {
  .card-group {
    width: 90vw;
  }
}

@supports (-ms-ime-align: auto) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}

/* Fallback for IE
  -------------------------------------------------- */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group input:-ms-input-placeholder {
    color: #777;
  }
}
