@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border: none;
}

body {
    background-color: #e97020 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    min-height: 100vh;
    font-family: 'Jost', sans-serif;
    padding-top: 20px;
    padding-bottom: 30px;
}

.mainHeading {
    color: white;
    text-align: center;
}

.forgotPassword {
    padding: 20px;
    background-color: #002b58;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 320px;
    width: 90%;
    box-shadow: 1px 1px 10px 0px black;
    border-radius: 10px;
}

.forgotPassword .group {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

label {
    color: #fff;
    font-size: 25px;
}

input {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    width: 90%;
}

button {
    width: 60%;
    height: 40px;
    color: #fff;
    background-color: #e97020;
    outline: none;
    border: none;
    border-radius: 5px;
}

button:hover {
    transform: scale(1.03);
}
.loader{

   display: none;
   align-items: center;
   justify-content: center;
   
 }
 /* Creating the dots */
 .span{
   height: 8px;
   width: 7px;
   margin-right: 7px;
   border-radius: 50%;
   background-color: white;
   animation: loading 1s linear infinite;
 }
 /* Creating the loading animation*/
 @keyframes loading {
   0%{
    transform: translateX(0);
   }
   25%{
    transform: translateX(15px);
   }
   50%{
    transform: translateX(-15px);
   }
   100%{
    transform: translateX(0);
   }
     
 }
.span:nth-child(1){
  animation-delay: 0.1s;
}
.span:nth-child(2){
  animation-delay: 0.2s;
}
.span:nth-child(3){
  animation-delay: 0.3s;
}
.span:nth-child(4){
  animation-delay: 0.4s;
}
.span:nth-child(5){
  animation-delay: 0.5s;
}