html {
  background-color: #2D4F61;
  background-image: url('../img/background-main.jpg');
  background-size: cover;
  overscroll-behavior: none;
}

body {
  color: #fff;
}

.main-card {
  background-size: cover;
  background-image: url('../img/background-card.jpg');
}

.pantalla {
  display: none;
}

.pantalla.is-active {
  display: block !important;
}

.select.is-fullwidth select, .input {
  border-radius: 50px;
}

a:not(.button){
  text-decoration: underline;
}

a.has-text-link-light{
  position: relative;
  padding: .3em;
  padding-right: .3em;
  z-index: 1;
  transition: all 200ms ease;
}

a.has-text-link-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  transition: all 200ms ease;
  z-index: -1;
  border-radius: 50px;
}

a.has-text-link-light:hover {
  color: #000 !important;
}

a.has-text-link-light:hover::after {
  height: 100%;
}

.box {
  border-radius: 30px;
}

.button-main {
  background: rgb(26,153,215);
  background: linear-gradient(90deg, rgba(26,153,215,1) 18%, rgba(0,114,185,1) 100%);
  border-radius: 50px;
  color: #fff !important;
  font-weight: 700;
  position: relative;
  border: none;
  z-index: 1;
}

.button-main::before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: rgb(26,153,215);
  background: linear-gradient(-90deg, rgba(26,153,215,1) 18%, rgba(0,114,185,1) 100%);
  position: absolute;
  border-radius: 50px;
  left: 2px;
  top: 2px;
  z-index: -1;
}

.button-main:hover {
  top: 2px;
}

.button-main:active {
  top: 4px;
}

#loader {
  max-width: 110px;
  -webkit-animation-name: rotation;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-name: rotation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0def);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0def);
  }
  100% {
    transform: rotate(360deg);
  }
}

#email {
  text-transform: lowercase;
}