body {
  font-family: "Alatsi", sans-serif;
  margin: 0;
  padding: 0;
  background-image: url(/img/fondo.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.container-form {
  -webkit-box-shadow: 1px 1px 20px 2px rgba(62, 235, 247, 1);
  -moz-box-shadow: 1px 1px 20px 2px rgba(62, 235, 247, 1);
  box-shadow: 1px 1px 20px 2px rgba(62, 235, 247, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20em;
  height: 28em;
  background: rgba(0, 116, 217, 0.3);
  padding: 4.3rem 1.8rem;
  box-sizing: border-box;
  border-radius: 0.9rem;
  transition: all 300ms ease;
}
.bigContainer {
  height: 30em !important;
}

.loginError {
  text-align: center;
  font-weight: normal;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 8px;
  color: red;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
}

.fade-enter {
  opacity: 0;
}

.fade-enter-active {
  transition: opacity, 0.8s;
}

.fade-leave {
  opacity: 1;
}

.fade-leave-active {
  transition: opacity 1.6s;
  opacity: 0;
}

/* .opaque {
  opacity: 1 !important;
  height: inherit !important;
} */

.container-form .logo-rayco {
  width: 35%;
  border-radius: 0.6rem;
  position: absolute;
  left: 32.5%;
  top: 20px;
  top: 1rem;
  /* top: -2.5rem; */
}

.container-form h2 {
  margin: 48px auto 16px auto;
  padding: 0 0 2rem 0;
  color: #fafafa;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

.container-form .inputbox {
  position: relative;
}

.container-form .inputbox input {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 1.8rem;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}

.container-form .inputbox label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.6rem;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.5px;
  pointer-events: none;
  transition: 0.5s;
}

.container-form .inputbox input:focus ~ label,
.container-form .inputbox input:valid ~ label {
  top: -1.5rem;
  left: 0;
  color: yellow;
  font-size: 0.85rem;
  transition: 1s;
}

.container-form input[type="submit"] {
  /* position: relative; */
  /* top: 2rem; */
  margin: 15px auto;
  width: 100%;
  background: #092461;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 0.5rem;
  padding: 10px 20px;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .container-form .logo-rayco {
    border-radius: 0.6rem;
    width: auto;
    margin: 0;
    padding: 0;
    height: 50px;
    position: absolute;
    top: 20px;
  }

  .container-form h2 {
    margin: 1rem 0.5rem;
    padding: 0 0 2rem 0;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
  }
}
