body{
    background: #f5f5f2;
    max-height: 100vh;
    background-size: cover;
    background-position: center;
}
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgba(39, 39, 39, 0.4);
    
}
.nav{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    height: 100px;
    line-height: 100px;
    width: 100%;
    background: linear-gradient(rgba(39,39,39,0.6), transparent);
    z-index: 100;
}
.nav-menu ul{
    display: flex;
}
.nav-menu ul li{
    list-style-type: none;
    
}

.nav-menu ul li .link{
    text-decoration: none;
    font-weight:500 ;
    color: white;
    padding-bottom: 15px;
    margin: 0 25px;
    
}
.nav-menu ul li .link:hover{
    border-bottom:2px solid #fff ;
}

.nav-button .btn{
    width: 130px;
    height: 40px;
    font-weight: 500;
    background: rgba(255,255,255,0.4);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow:  0 5px 10px rgba(0,0,0,0.1);
    padding: 20px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
#SignupBtn{
    margin-left:15px ;
}
.btn.white-btn{
    background: rgba(255,255,255,0.7);
}
.btn:hover{
    background: rgba(255,255,255,0.3);
}
.btn.btn.white-btn:hover{
    background: rgba(255,255,255,0.5);
}
.nav-menu-btn{
    display: none;
}

.input-field{
    font-size: 15px;
    background: rgba(255,255,255,0.2);
    color: white;
    height: 50px;
    width: 100%;
    padding: 0 10px 0 45px;
    border: none;
    border-radius: 30px;
    outline: none;
    transition: .2s ease;
    margin-top: -20px
}

.input-field:hover, .input-field:focus{
    background: rgba(255,255,255,0.25);
}
::-webkit-input-placeholder{
    color: #fff;
}
.form-group i{
    position: relative;
    top: -35px;
    left:17px;
    color: #fff;

}
header .logo{
    font-weight: bolder;
    font-size: 25px;
    color: #333;
}

header .navbar ul{
    list-style: none;
}
header .navbar ul li{
    position: relative;
    float: left;
}
header .navbar ul li a{
    font-size: 20px;
    padding: 20px;
    color: #333;
    display: block;
}

header .navbar ul li a:hover{
    background: #333;
    color: #fff;
}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background-color: #fff;
    display: none;
}
header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.1);
}
header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: initial;
}
#menu-bar{
    display: none;
}
header label{
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display:none;
}

@media(max-width:991px){
    header{
        padding: 20px;
    }
    header label{
        display: initial;
    }
    header .navbar{
        position: absolute;
        top: 100%; 
        left: 0; 
        right: 0;
        background: #fff;
        border-top:1px solid rgba(0,0,0,.1) ;
        display: none;
    }
    header .navbar ul li{
        width: 100%;
    }
    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }
    header .navbar ul li ul li{
        background: #eee;
    }
    #menu-bar:checked ~ .navbar{
        display: initial;
    }

}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('paper-layer-blue-abstract.avif');
    background-size: cover;
    background-position: center;
    
}
.home::before{
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-out;
}

.home.show::before{
    opacity: 1;
    pointer-events: auto;
}
.form_container{
    position: absolute;
    max-width: 320px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.2);
    z-index: 101;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: rgba(0,0,0,0.1);
}

.form-group{
    margin-bottom:30px;
}

.input_box {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 40px;
}
.input_box input{
    height: 100%;
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #aaaaaa;
    outline: none;
    padding: 0 30px;
    color: #333;
    transition: all 0.2s ease;
    
}

.input_box input:focus{
    border-color: #7d2ae8;
}


.input_box i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
