@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
body{
  background: #161f36;
  overflow: hidden;
}
::selection{
  background: rgba(26,188,156,0.3);
}
.container{
  max-width: 440px;
  padding: 0 20px;
  margin: 170px auto;
}
.wrapper{
  width: 100%;
  background: #19284d;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
}
.wrapper .logo {
  height: 140px;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .logo #img{
  max-width: 59%;
  }
.wrapper form{
  padding: 0px 25px 25px 25px;
}
.wrapper form .row{
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}
.wrapper form .row input, .wrapper form .alink{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}
form .row input:focus{
  border-color: #fcc117;
  box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
}
form .row input::placeholder{
  color: #999;
}
.wrapper form .row i{
  position: absolute;
  width: 47px;
  height: 100%;
  color: #fff;
  font-size: 18px;
  background: #fcc117;
  border: 1px solid #fcc117;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper form .button input{
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #fcc117;
  border: 1px solid #fcc117;
  cursor: pointer;
  margin-top: 10px;
}
.wrapper form .alink{
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #fcc117;
  border: 1px solid #fcc117;
  cursor: pointer;
  margin-top: 10px;
}
.loader {
  height: 64px;
  width: 64px;
  position: fixed;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  border: 2px solid rgba(255,255,255,.05);
  border-left: 2px solid  #fcc117;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  -moz-animation: loader 1.5s linear infinite;
  -ms-animation: loader 1.5s linear infinite;
  -o-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
}

@-webkit-keyframes loader {to {-o-transform: rotate(360deg);-ms-transform: rotate(360deg);-moz-transform: rotate(360deg);-webkit-transform: rotate(360deg);transform: rotate(360deg);}}
@keyframes loader {to {-o-transform: rotate(360deg);-ms-transform: rotate(360deg);-moz-transform: rotate(360deg);-webkit-transform: rotate(360deg);transform: rotate(360deg);}}


.errorcontainer {
    color:#fdce11;
    margin-bottom: 15px;
    animation:blinkingText 0.9s 2;
}

@keyframes blinkingText{
    0%{     color: #fdce11;    }
    49%{    color: #fdce11; }
    60%{    color: #000; }
    75%{    color: #000; }
    100%{   color: #fdce11;    }
}