*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Muli&display=swap');


:root{
  --darkblue : #0e1e2c ;
  --darkblue2 : #132738 ;
  --lightbg : #f5f5f5 ;
  --ligthbg2 : #F4F8FB ;
  --linkcolor : #0a66c2 ;
   --bordercolor : #DBE1E5 ;
   --cardbg : #fff ;
   --textcolorlight : #595959 ;
   --textcolordark : #212221 ;
   --cardinnerborder : #CFDDFF ;
   --cardinnerbg : #cfddff33 ;
   --fontfamily : 'Muli', sans-serif ;
   --btncolor:#F27838;
}


body{
    font-family:  var(--fontfamily);
    background-color: var(--lightbg);
    overflow: hidden;
    position: relative;
        height: 100vh;
        display: grid;
        place-items: center;
}
.login-bg{


    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 100%;

    z-index: -1;
}
.login-bg img{
 animation: scroll 40s linear infinite;
 width: 100% !important;
}
    @keyframes scroll {
        0% {
            left: 0px;
        }
        to {
            right: 0px;
        }
    }
#login-form{
    max-width: 600px;
    margin: 0px auto;
    height:fit-content;
      box-shadow: 0 0 0 5px #f0f2fb;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 30px 50px;
    border-radius: 10px;
    background-color: var(--lightbg) !important;
}

#login-form h1{
    font-weight: bold;
    font-size: 40px;
}
#login-form .row{
    align-items: center;
}
#login-form p{
    margin: 20px 0px;
    font-size: 15px;
    color: var(--textcolorlight);
}
.form-sec{
    text-align: center;

}
.form-sec .logo img{
    height: 40px;
    margin-bottom: 20px;
}
.form-sec p{
    margin: 10px 0px !important;
}
.form-sec p a{
    text-decoration: none;
    margin-left:5px;
}
/* form */

.form-sec h2{
   font-size: 24px;
   font-weight: 600;
   margin-bottom: 30px;
}
.form-sec input {
   
    display: block;
    margin: 10px auto 20px auto;
    width: 100%;
    padding: 10px 30px;
    font-size: 15px !important;
    border-radius: 5px;
    border: 1px solid var(--bordercolor);
}

.form-sec input:focus{
    outline: none;
    border: 1px solid #000;
}

.form-sec button{
    margin: 10px 0px;
    width: 100%;
    padding: 10px;
    font-size: 16px !important;
    border: 1px solid var(--bordercolor);
    border-radius: 5px;
    background-color: var(--btncolor);
    color: var(--cardbg);
    
}


/* earth img */

.earth-img{
    position: absolute;
    bottom: 60px;
    left: 250px;
    animation:spin 8s linear infinite;
    transform: rotate(0deg);
}

@keyframes spin {
    0%{
        transform: rotate(0deg);
    }
    100%{transform: rotate(360deg);}
}

.earth-img img{
    height: 180px;
}

.plane-img{
    position: absolute;
    top: 40px;
    left: 450px;
    animation: planeimg 15s infinite linear;
}

.plane-img img{
    height: 200px;
}

@keyframes planeimg{
    0%{
        left: -300px;
    }
    20%{
        left: -200px;
    }
    40%{
        left: 100px;
    }
    60%{
        left: 300px;
    }
    80%{
        left: 605px;
    }
    100%{
        left: 100%;
    }
}
.form-sec h4{
    font-size: 19px;
    margin: 10px auto;
}
.g-btn{
    background-color: transparent !important;
    color: #000 !important;
    margin-top: 10px !important;
    border: 1px solid #595959;
}
.g-btn a{
    color: #000 !important;
    text-decoration: none;
}
.g-btn img{
    height: 20px !important;
    margin-right: 30px;
}