@font-face {
  font-family: Lack;
  src: url('/assets/fonts/lack-regular.otf');
}

@font-face {
  font-family: Lack-line;
  src: url('/assets/fonts/lack-line-regular.otf');
}
#okta-login-container{}
body{
  margin: 0;
  background: #b62b83;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(45deg, #FC466B, #3F5EFB);
  font-family: 'Lack', sans-serif;
  height: 100vh;
  overflow: hidden; /*This should save the gradient*/
}
#okta-login-container{
  display: none;
}
input,button{
  font-family: 'Lack', sans-serif;
}
::placeholder {
  color: rgba(255,255,255,0.5);
}

.loginForm{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20em;
  height: 30em;
  padding: 20px;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 3px solid rgba(255, 255, 255, 0.09);
}
.loginForm h1{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      color: #fff;
  opacity: 0.7;
font-size: 45px;
}
.loginForm h3{
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      color: #fff;
  opacity: 0.7;
font-size: 25px;
}
.loginForm p{
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      color: #fff;
  opacity: 0.7;
}
.loginForm a{
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      color: #fff;
  opacity: 0.7;
}
#pL, #uL{
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0.7;
  color:#fff;
}
#adminOnly{
  font-size:0.9rem;
}
.loginForm input {
  background: transparent;
  padding: 1em;
  margin-bottom: 2em;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5000px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  width: 60%;
  left: 20%;
}

h1,h2,h3,h4,h5,h6,h7,p,span,button,form{
  padding: 0;
  margin: 0;
}
#welcomeUsername{
  position:relative;
  top: 2em;
  left: 0;
  text-align: center;
}
#loginBtn, #continueButton{
  background: transparent;
  padding: 1em;
  width: 40%;
  left: 30%;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5000px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
#continueButton{
  position: absolute;
  bottom: 5em;
}

.box{
  position: fixed;
  z-index: -1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation-timing-function: ease-in-out;
  animation: hover;

}
@keyframes hover{
  0% { transform: translate(0,  0px); }
  50%  { transform: translate(0, 30px); }
  100%   { transform: translate(0, -0px); }
}
#loader{
    background: rgba(0,0,0,0.5);
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: 9996;
  transform: translate(-2em, -2em);
}
.ripple {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0;
  margin: 0 !important;
  z-index: 9997;
}

.ripple div {
  position: absolute;
  background: rgba(255,255,255,0.5);/*Maybe?*/
  border: 2px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  z-index: 9998;
}

.ripple div:nth-child(2) {
  animation-delay: -0.5s;
  z-index: 9999;
}

@keyframes ripple {
  0% {
    top: 2em;
    left: 2em;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 4em;
    height: 4em;
    opacity: 0;
  }
}

a{
  color: black;
}
a:visited{
  color: black;
}

@media only screen and (max-width:750px) {
h3{
  font-size: 3vw;
  margin: 0;
}
  #adminOnly{
  width: 100%;
  margin: 0;
  font-size: 2vw;
}
}
@media only screen and (max-width:480px) {
  h1{
  font-size: 6vw;
}
}