*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(to right,#4fb8ea,#99d0f4);
    
}

html, body{
    height: 100%;
    width:100%;
    overflow-y: hidden;
    }
    
    #page1{
        width: 100%;
        height: 100vh;
        background-color: #A4D2F4;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background: linear-gradient(#76c7fa, #92cefc);
        position: relative;
        z-index: 9;
    }
    
    .logo img {
        width: 15vw;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
    }
    
    .links{
        display: flex;
    }
    
    .nav-links a {
        color: #22211D;
        text-decoration: none;
        margin-left: 20px;
        font-size: 1.2vw;
    }
    
    .hamburger {
        display: none;
        background: none;
        border: none;
        font-size: 5vw;
        color: #22211D;
        cursor: pointer;
    }
    
    /* Media Queries for navbar*/
    @media only screen and (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            text-align: center;
        }
    
        .logo img {
            width: 80vw;
        }
    
        .nav-links.active {
            display: flex;
            position: absolute;
            top: 100px;
            left: 0;
            background: linear-gradient(#76C4EA, #A4D2F4);
            padding: 10px 0;
        }
    
        
    .nav-links a {
        font-size: 3vw;
    }
    
        .hamburger {
            display: block;
        }
    
        .links{
            display: flex;
        }
    
        #page1{
            background: linear-gradient(#76C4EA, #A4D2F4);
        }
    
    
    }

    


.input-box{
    width: 100%;
}

select.ss {
    padding-left: 8px;
    border-radius: 5px;
    height: 40px;
    width: 95%;
}

@media (min-width:320px) and (max-width:765px)  {
    select.ss {
        width: 95%;
    }
    .input-box {
        width: 100%;
        /* padding: bottom 15px ; */
    }
    .input-box input {
        height: 40px;
        width: 95%;
        padding: 0 10px;
        border-radius: 5px;
        border-color: 1px #ccc;
        outline: none;
    }
    
}
.container{
    max-width: 650px;
    margin: 0 28px;
    padding: 28px;
    border-radius: 10px;
    overflow: hidden;
    background: #9fd5f8;
    box-shadow:0 15px 20px rgba(0,0,0,0.6);
}
h2{
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    color: #020202;
    padding-bottom: 8px ;
    border-bottom: 1px silver;
}

.content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0 ;
}
.input-box{
    display: inline;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 15px ;
}
.input-box::nth-child(2n){
    justify-content: end;
}
.input-box label{
    width: 95%;
    color: #020202;
    font-weight: bold;
    margin: 5px ;
}
.input-box input{
    height: 40px;
    width: 95%;
    padding: 0 10px;
    border-radius: 5px;
    border-color: 1px #ccc;
    outline: none;
}
.input-box input:is(:focus,:valid){
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}