/* *::-webkit-scrollbar{
    display: none;
} */
* {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* scrollbar-width: none; */
    overflow-x: hidden;
    font-size: medium;
    box-sizing: border-box;
}

body{
    background-color: #f2f2f2;
    font-family: Tahoma, sans-serif;
    margin: 0;
}
header {
    width: 100%;
    height: 120px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    box-shadow: 0px 0px 30px 0px rgba(10,10,10,0.5);
    overflow: hidden;
}
#logo {
    width: 100px;
    height: 100px;
    background-color: none;
    padding: 0.4rem;
    margin-left: 50px;
    
}
.topnav{
    width: 80%;
}
nav {
    display: inline-flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    align-items: center;
    padding-inline-start: 0;
    margin-block: 0;
    height: 100%;
}
    
nav a {
    color: #333;
    margin: 0 0.2rem;
    display: block;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    cursor: pointer;
}
.topnav .icon {
    display: none;
}
#meet-reg-btn{
    height:50px;
    width: 25%;
    max-width:300px;
    min-width: 200px;
    border: solid skyblue 3px;
    padding-left:20px;
    padding-right: ;
    text-align: center;
    overflow: hidden;
    
}
#flyer{
    margin-top: 100px;
    padding: 20px;
    background-color: skyblue;
    color: #333333;
    height: 400px;
    text-align: center;
}

#reg-form{
    background-color:#fff;
    opacity: 0.6;
    width: 600px;
    padding: 60px 50px;
    margin: -120px auto 80px;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px rgba(10,10,10);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:20px;
    justify-content: center;
    align-items: center;
}
#reg-form:hover{
    opacity: 1;
}
.lbl1{
    width:calc(50% - 10px);
}
.lbl2{
    width: 100%;
    flex-grow: 1;
}
.lbl1,.lbl2{
    margin-top: 20px;
}
input,select{
    border: 1px solid #ccc;
    color: #333333;
    margin: 10px 0 0 0;
    width:100%;
    min-height: 4em;
    padding: 20px;
    background-color: #f9f9f9;
}
#submit{
    background-color: rgb(31, 66, 80);
    color: #fff;
    width:60%;
    margin:30px auto 0;
    border-radius:10px;
}
@media (max-width:780px) {
    .topnav a:not(:last-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}
@media (max-width:600px){
    header{
        background-color: rgba(0,0,0,0);
        box-shadow: none;
       
    }
    #meet-reg-btn{
        height:50px;
        width:40%;
        min-width: 100px;
        border: solid #112e41 3px;
        padding: 0 20px;
        text-align: center;
        margin-left:calc(50% - 100px);
        
    }
    
    .topnav a:not(:last-child) {display: none;}
    /* .topnav a.icon {
      float: right;
      display: block;
    } */
    .topnav.responsive {position: relative;}
    /* .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    } */
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    #flyer{
        margin-top: 100px;
        width: 100%;
        padding: 20px;
        background-color: skyblue;
        color: #333333;
        height: 300px;
        text-align: center;
    }
    #reg-form{
        opacity: 1;
        width:100%;
        border-radius: 5px;
        margin: -10px 0 80px;
        padding: 50px 30px 30px;
        box-shadow: 0px 0px 30px 0px rgba(10,10,10,0.5);
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap:0px;
        justify-content: center;
        align-items: center;
        
    }
    .lbl1,.lbl2 {
        padding: 0;
        min-height: 4em;
        width:100%;
        flex-grow: 1;
    }
    input{
        background-color: #fff;
        border: 1px solid #ccc;
        color: #333333;
        margin: 10px 0 0 0;
        min-height: 4em;
        padding: 0 20px;
        
    }
}
