*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;}

body{
    /* background-image: url('img/bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: sans-serif; */
    min-height: 100vh;
    width: 100%; 
    height: 100%;
    /* WARNING DARK mode is not supported */
    background-image: linear-gradient(rgba(4,9,30,0.8),rgba(4,9,30,0.3)),url('/static/images/first/g-map.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 10px;
    /* background-size: 100%; */
    position:relative;
}
.login-wrapper{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form{
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 80px 40px 40px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 15px 25px rgba(0,0,0,0.8);

}

.form::before{
    content:'';
    position:absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    pointer-events: none;
}
.form img{
    position:absolute;
    top: -50px;
    left: calc(50% - 50px);
    width:100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}
.form h2{
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #ff652f;
}
.form .input-group{
    position:relative;
}
.form .input-group input{
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background-color: transparent;
    color: inherit;
}
.form .input-group label{
    position: absolute;
    top: 0;
    left:0;
    padding: 10px 0;
    font-size: 1rem;
    pointer-events: none;
    transition: .3s ease-out;
}

.form .input-group input:focus + label,
.form .input-group input:valid + label {
    transform: translateY(-18px);
    color: #ff652f;
    font-size: 0.8rem;
}
.submit-button{
    display: block;
    margin-left: auto;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    /* background: #f44336; */
    position: relative;
    cursor: pointer;
    border-radius: 5px;
}
.submit-button:hover{
    border: 1px solid #f44336;
    background: #f44336;
    border-radius: 5px;
    transition: 1s;
}
.mess{
    letter-spacing: 1px;
    /* margin-bottom: 2rem; */
    /* border: 2px solid; */
    text-align: center;
    margin-top: 2rem;
    padding: 10px;
    color: #ff652f;
    border: 2px solid white;
    border-radius: 5px;
    /* animation-name: fade; */
    animation-name: fade-out-message;
    animation-duration: 10s;
    animation-fill-mode: forwards;
    /* opacity: 1;
    -webkit-transition: opacity 1000ms linear;
    transition: opacity 1000ms linear; */
    
    
    /* display: block;
    width: 100%;
    background: goldenrod;
    height:50px;
    padding: 5px auto;
    border: 2px solid white;
    transition: all 2s linear;
    display: none; */
}
.forgot-pw{
    display: none;
}
/* ------------------------------------------------------------------------------------------------------------------- */
@keyframes fade-out-message{
    0%{
      opacity: 1;
      /* transform: rotateX(90deg); */
    }
    50%{
      opacity: 0.5;
      /* transform: rotateX(0deg); */
    }
    100%{
      display: none;
      opacity: 0;
      /* transform: rotateX(90deg); */
    }
  }

/* ------------------------------------------------------------------------------------------------------------------- */
.fade-out {
    animation: fade 2s;
    -webkit-animation: fade 2s;
    -moz-animation: fade 2s;
  }
  
  /* Animate opacity */
  @keyframes fade {from { opacity: 1 } to { opacity: 0 }}
  @-moz-keyframes fade {from { opacity: 1 } to { opacity: 0 }}
  @-webkit-keyframes fade {from { opacity: 1 } to { opacity: 0 }}
  
/* --------------------------------------------------------------------------------------------------------------- */

.fade-in {
    animation: fadeIn ease 10s;
    -webkit-animation: fadeIn ease 10s;
    -moz-animation: fadeIn ease 10s;
    -o-animation: fadeIn ease 10s;
    -ms-animation: fadeIn ease 10s;
  }
  
  @keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
/* --------------------------------------------------------------------------------------------------------------- */

  .fade-out1 {
    animation: fadeOut ease 8s;
    -webkit-animation: fadeOut ease 8s;
    -moz-animation: fadeOut ease 8s;
    -o-animation: fadeOut ease 8s;
    -ms-animation: fadeOut ease 8s;


  }@keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-moz-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-webkit-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-o-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-ms-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
  }
}