@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');
/* font-family: 'Nunito', sans-serif; */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --font: 'Nunito', sans-serif;
    --color: #414552;
    --fill : #545969;
    --sail-gray50: rgba(247,250,250,1);
    --sail-radius-4: 4px;
    --sail-radius: var(--sail-radius-4);
}
section{
    background-color:#F7FAFC;
    height: 100vh;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
section::before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0);
}
.logo img{
    width: 240px;
    padding-left: 20px;
    padding-bottom: 40px;
}
.main{
    position: absolute;
    top: 40%;
    left: 50%;
    transform:translate(-50%,-40%) ;
    -webkit-transform:translate(-50%,-40%) ;
    -moz-transform:translate(-50%,-40%) ;
    -ms-transform:translate(-50%,-40%) ;
    -o-transform:translate(-50%,-40%) ;
}

.form-section{
    padding: 0px;
    background-color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 5px 10px 30px -10px rgb(0 0 0 / 20%);
}
.form-section .title h3 {
    letter-spacing: -.2px;
    color: rgba(66,66,87,1) ;
    font-family: var(--font);
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 20px;
}
.form-section .title p{
    color: #3C4257;
    font-family: var(--font);
   font-size: 14px;
   margin-bottom: 24px;
}
.email-label{
    color: rgba(66,66,87,1) ;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
}
input{
    padding: 8px 16px;
    width: 100%;
    flex: auto;
    outline: none;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    transition: 0.8s all;
    -webkit-transition: 0.8s all;
    -moz-transition: 0.8s all;
    -ms-transition: 0.8s all;
    -o-transition: 0.8s all;
}
input:focus{
    border: 1px solid #f97d22;

}
.btn{
    padding: 8px 16px;
    width: 100%;
    text-align: center;
    border: 2px solid #f97d22;;
    background-color: #f97d22 ;
    color: #fff;
    font-weight: 500;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}
.btn:hover{
    background: transparent;
    border: 2px solid #f97d22;
    color: #f97d22;
}
/* f97d22 */
/* forget password  */
.password-div{
    box-shadow:  0px 4px 5px #ccc;;
    position: absolute;
    content: '';
    height: 60px;
    width: 60px;
    background-color:#f97d22 ;
    line-height: 74px;
    top: -7%;
    left: 43%;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.password-div span i {
    color: #fff;
    font-size: 36px;
}



/* media query  */
/* min 991px  */
@media screen and (min-width: 991px) {
    .inner-section{
        max-width: 500px;
        margin: 0px auto;
    }
    .logo {
        padding-left: 100px;
    }
}
/* max 777px */
@media screen and (max-width: 777px) {
    .main{
        width: 100%;
        padding: 0px 20px;
    }
    .vh-100{
        height: 100vh;
    }

    .logo img{
        width: 240px;
        padding-left: 15%;
        padding-bottom: 40px;
    }
    .form-section{
        padding: 20px 18px;
    }
    .form-section .title h3{
        font-size: 19px;
        line-height: 24px;
    }


}
#head1{
    font-size: 12px;
    font-weight:500;
}
.remember-text{
    font-size: 11px;
    color:#878a99;
    margin-top:5px;
    font-family:cursive;
}
.forgot-top-header{
    padding: 12px 0px;
    border-radius: 6px 6px 0px 0px;
    background-color: #f97d22;
}
.form-section-padding {
    padding: 34px 48px;
}
.w-14{
    width: 14px !important;
}
