@font-face {
    font-family:myFirstFont;
    src: url(../Poppins/Poppins-Regular.ttf);
}
@font-face {
    font-family: bold;
    src: url(../Poppins/Poppins-Bold.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: myFirstFont;
    }
    
    body{
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(../image/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    font-size: 14px;
    color: var(--text-clr);
    font-family: myFirstFont;
    }

    /* Website Scrollerbar */
    body::-webkit-scrollbar {
        width: 5px !important;
        height: 5px !important;
    }
    body::-webkit-scrollbar-track {
        background: #3838387c !important;
    }
    body::-webkit-scrollbar-thumb {
        background-color: #e0120ba4 !important;
        border: 1px solid #ff020279 !important;
        border-radius: 1px !important;
    }
  
    .header{
        min-height: 100vh;
        width: 100%;
        background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(../image/background.jpg);
        background-position: center;
        background-size: cover;
        position: relative;
    }
    nav{
        display: flex;
        padding: 2% 6%;
        justify-content: space-between;
        align-items: center;
    }
    nav img{
        width: 150px;
    }
    .nav-links{
        flex: 1;
        text-align: right;
        
    }
    .nav-links ul li{
        list-style: none;
        display: inline-block;
        padding: 8px 12px;
        position: relative;
        
    }
    .nav-links a{
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        
    }
    .nav-links ul li::after{
        content: '';
        width: 0%;
        height: 2px;
        background: #ff0000;
        display: block;
        margin: auto;
        transition: 0.5s;
        
    }
    .nav-links ul li:hover::after{
        width: 100%;
        
    }
    
    .icon{
        display:none;
    }
    

:root{
    --white: #fff;
    --text-clr: #000024;
    --primary: #3e2093;
    --secondary: #000008;
    /* --secondary: #c0c1d2; */
    --input-bg: #f1f1ff;
    --btn-hvr: #1a0065;
    --tra: rgba(255, 255, 255, 0.959);
    /* --tra: rgba(255, 255, 255, 0.863); */
    --bordcolor:rgba(0, 26, 255, 0.082);
    /* --bordcolor:rgba(51, 61, 148, 0.521); */
    }

    .wrapper{
        width: 100%;
        padding: 0 10px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        }
        
        .r_form_wrap{
        width: 500px;
        max-width: 100%;
        }
        
        .r_form_wrap .title{
        padding: 25px;
        background: var(--white);
        border-radius: 3px;
        margin-bottom: 20px;
        
        }
        
        .r_form_wrap .title p{
        font-size: 25px;
        text-align: center;
        font-family: myFirstFont;
        }
        
        .r_form{
        padding: 40px;
        border-radius: 3px;
        background: var(--tra);
        }
        
        .r_form .input_wrap{
        width: 100%;
        margin-bottom: 25px;
        }
        
        .r_form .input_wrap label{
        display: block;
        margin-bottom: 5px;
        }
        
        .r_form .input_wrap .input_item{
        position: relative;
        width: 100%;
        }
        
        .r_form .input_wrap .input_item .input{
        width: 100%;
        border-radius: 3px;
        height: 40px;
        border: 2px solid var(--input-bg);
        background: var(--input-bg);
        padding: 10px 20px;
        padding-left: 50px;
        transition: 0.5s ease;
        color: var(--secondary);
        border-color: var(--bordcolor);
        }
        
        .r_form .input_wrap .input_item .input:focus{
        border-color: var(--primary);
        }

        .button{
            width: 100%;
            border: 0;
            background: var(--primary);
            padding: 10px;
            border-radius: 3px;
            height: 40px;
            color: var(--white);
            cursor: pointer;
            transition: 0.5s ease;
            }
            
            .button:hover{
            border-color: var(--btn-hvr);
            background: var(--btn-hvr);
            }

        #uid_detail{
            color: #7c7c81;
            font-size: 12px;
            padding: 3.5px 0px;
        }
    
        .r_form .input_wrap .input_item .icon{
            position: absolute;
            top: 12px;
            left: 20px;
            color: var(--secondary);
            font-size: 16px;
            }
            #icon{
            position: absolute;
            top: 12px;
            left: 20px;
            color: var(--secondary);
            font-size: 16px;
            }
        .none_div{
            height: 100px;
        }
        #header_fees{
            font-family: bold;
        }
            
    @media (max-width: 700px) {

    *{
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    
    }
    
    #logo-img{
        padding: 10px;
    }

    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0%;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .icon{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 25px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
 #demo{
    height: 60px;
    width: 100%;
    overflow: hidden;
    } 
     #demo1{ 
        height: 40px;
        width: 100%;
        overflow: hidden;
    } 