@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}

html, body{
  background-color: #1a1a1a;
  display: grid;
  height: 100vh;
  width: 100%;
  place-items: center;
}
::selection{
  background: #ff80bf;

}
.container{
  background: #fff;
  max-width: 350px;
  width: 100%;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}
.container form .title{
  font-size: 30px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  position: relative;
}
.container form .title:before{
  content: '';
  position: absolute;
  height: 4px;
  width: 33px;
  left: 0px;
  bottom: 3px;
  border-radius: 5px;
  background: linear-gradient(to right, #996600 0%, #cc9900 100%);
}
.container form .input-box{
  width: 100%;
  height: 45px;
  margin-top: 25px;
  position: relative;
}
.container form .input-box input{
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 16px;
  border: none;
}
.container form .underline::before{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ccc;
  left: 0;
  bottom: 0;
}
.container form .underline::after{
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #996600 0%, #cc9900 100%);
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.container form .input-box input:focus ~ .underline::after,
.container form .input-box input:valid ~ .underline::after{
  transform: scaleX(1);
  transform-origin: left;
}
.container form .button{
  margin: 40px 0 20px 0;
}
.container .input-box input[type="submit"],
.btn-submit{
  /*  background: linear-gradient(to right, #f7931e 0%, #cc9900 100%); */
  height: 45px;
  background: #f7931e;
  font-size: 17px;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.container .input-box input[type="submit"]:hover,
.btn-submit:hover{

  letter-spacing: 1px;
  /*background: linear-gradient(to left, #f7931e 0%, #cc9900 100%);*/
  background: #333;
  color: #f7931e;
}

.full-width{
  width: 100% !important;
  border:0 !important;
}

.container .option{
  font-size: 14px;
  text-align: center;
}
.container .facebook a,
.container .twitter a{
  display: block;
  height: 45px;
  width: 100%;
  font-size: 15px;
  text-decoration: none;
  padding-left: 20px;
  line-height: 45px;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.container .facebook i,
.container .twitter i{
  padding-right: 12px;
  font-size: 20px;
}
.container .twitter a{
  background: linear-gradient(to right,  #00acee 0%, #1abeff 100%);
  margin: 20px 0 15px 0;
}
.container .twitter a:hover{
  background: linear-gradient(to left,  #00acee 0%, #1abeff 100%);
  margin: 20px 0 15px 0;
}
.container .facebook a{
  background: linear-gradient( to right,  #3b5998 0%, #476bb8 100%);
  margin: 20px 0 50px 0;
}
.container .facebook a:hover{
  background: linear-gradient( to left,  #3b5998 0%, #476bb8 100%);
  margin: 20px 0 50px 0;
}

/** LOADING **/

#box-loading {
  background-color: #1a1a1a;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
}

#box-loading #img-loading{
  margin-top: -120px;
  margin-left: -50px;
  width: 100px;
  height: auto;
  
}

#box-loading .middle {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  position: absolute;
}

#box-loading .bar {
  width: 10px;
  height: 70px;
  background: #fff;
  display: inline-block;
  transform-origin: bottom center;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  animation: bars-loader 1.2s linear infinite;
}

#box-loading .bar1 {
  animation-delay: 0.1s;
}

#box-loading .bar2 {
  animation-delay: 0.2s;
}

#box-loading .bar3 {
  animation-delay: 0.3s;
}

#box-loading .bar4 {
  animation-delay: 0.4s;
}

#box-loading .bar5 {
  animation-delay: 0.5s;
}

#box-loading .bar6 {
  animation-delay: 0.6s;
}

#box-loading .bar7 {
  animation-delay: 0.7s;
}

#box-loading .bar8 {
  animation-delay: 0.8s;
}

@keyframes bars-loader {
  0% {
    transform: scaleY(0.1);
    background: transparent;
  }

  50% {
    transform: scaleY(1);
    background: #fff;
  }

  100% {
    transform: scaleY(0.1);
    background: transparent;
  }
}

#box-loading img{
  left: 50%;
  top: 50%;
  margin-left: -60px;
  margin-top: 0px;
  position: absolute;
  width: 120px;
  border: 0;
}

#box-loading .middle .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

#box-loading .middle .lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
#box-loading .middle .lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
#box-loading .middle .lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
#box-loading .middle .lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
#box-loading .middle .lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
