@font-face {
  font-family: 'Open Sauce Light';
  src: url(/images/OpenSauceSans-Light.ttf);
}

@font-face{
  font-family: 'Dosis semi bold';
  src: url(../images/Dosis-SemiBold.ttf);
}


*{
  font-family: 'Open Sauce Light';
}

html {
  height: 100%;
  /*cursor: url(images/pointerCursor1.png),auto;*/
}
body {
  margin:0;
  padding:0;
  background: linear-gradient(#ffffff, #ffffff);
}

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: #317add;
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #ffffff;
  text-align: center;

  /*cursor: context-menu;*/
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #ffffff;
  outline: none;
  background: transparent;
}

.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #ffffff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #ffffff;
  font-size: 12px;
}

.login-box form .loginSubmit {
  position: relative;
  display: inline-block;
  padding: 0px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px;
  background-color: #317add;
  border: none;
}

.login-box .loginSubmit:hover {
  background: white;
  color: black;
  border-radius: 5px;
  box-shadow: 0 0 5px white,
              0 0 25px white,
              0 0 50px white,
              0 0 100px white;

}

.loginSubmit input{
  color: white;
  width: 100px;
  height: 35px;
  background-color: transparent;
  border: none;
  /*cursor: pointer;*/
}

.loginSubmit input:hover{
  color: black;
  cursor: pointer;
}
  
  span {
    position: absolute;
    display: block;
  }
  
   span:nth-child(4) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, white);
    animation: btn-anim1 1s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
   span:nth-child(5) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, white);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
   span:nth-child(2) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, white);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  
   span:nth-child(3) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, white);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }

  /* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active
{
    background-color: transparent;
    -webkit-box-shadow: 0 0 0 30px #317add inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill
{
 -webkit-text-fill-color:white ;
}

.headercontainer {
  position: fixed;
  background-color: #317ADD;
  width: 100%;
  left: 0;
  top: 0;
  color: white;
  font-size: x-large;
  margin-bottom: 10px;
  height: 70px;
  box-shadow: 0px 2px 10px black;
}

.headercontainer .headCol p {
  position: absolute;
  margin-top: 0;
  padding-left: 25px;
  font-size: 42px;
  font-family: 'Dosis semi bold';
  text-decoration: underline;
}

#REG_ID{
  font-size: 20px;
  position: absolute;
  top: 15px;
  left: 150px;
}



#hrr{
  background-color: red;
  width: 100px;
  height: 1px;
  margin-left: 10px;
  margin-right: 0px;
  border: none;
  position: absolute;
}