*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


html, body {
    min-height: 100%;
    width: 100%;
    background-color: #f7f9fa;
    font-size: 14px;
}
.container-fluid{
    min-height:90vh;
}
.logo{
    color: #ffff;
}
nav{
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(21, 160, 51);
    position: relative;
    height: 60px;
}

nav ul{
    display: flex;
    gap:30px;
}
nav ul li{
    list-style-type: none;
}
nav ul li a{
    text-decoration: none;
    color: #ffff;
}
a:hover{
    text-decoration: none !important;
    color: #84f884;
}
.menu-icon{
    display: none;
}
.menu-icon i{
    color: #ffff;
    font-size: 30px;
}
.logoh{
    font-size: 28px;
}

@media (max-width : 800px) {
    .logoh{
        font-size: 18px;
    }
    nav ul{
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: rgb(21, 160, 51);
        gap: 0;
        overflow: hidden;
        

    }
    nav ul li{
        padding:20px;
    }
    .menu-icon{
        display:block;
    }
    #menuList{
        transition: all 0.5s;
    }
}
.container-fluid{
    margin:0;
    padding:0;
}
.container{
    margin:0;
    padding:0;
}
.row{
    margin:0;
    padding:0; 
}
.col-sm-12{
    padding:0;
}
.col-sm-6{
    padding:5px;
    background-color: white;
    border-radius:5px;
}
.login-registation{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.center-div{
    width:250px;
    height: 300px;
    border: 1px solid rgb(228, 228, 228);
    background: white;
    border-radius: 5px;
}
.heading{
    padding:5px 10px;
    width: 100%;
    height: 35px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: rgb(21, 160, 51);
    border-radius: 5px 5px 0 0;
}
.section{
    padding:8px;
}
.photo_show{
    width:100px !important;
    height:100px !important;
    border: 1px solid rgb(160, 159, 159);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    background-size:cover;
}

