*{
    margin:0;
    padding:0;
    font-family:sans-serif;
}
body{
    background: black;
}
/* #2a2f3b  */
.fconatiner{
    width:300px;
    height:450px;
    margin : 8% auto;
    background: #2a2f3b  ;
    border-radius:9px;
    position:relative;
    overflow: hidden;
}
#multiform{
    display:grid;
    grid-template-columns: repeat(4,300px);
    width :840px;
    position: absolute;
    top: 100px;
    transition: 0.5s;
    /* left:-360px; */
}
fieldset{
    border: none;
    
}
.pageheading{
    text-align:center;
    margin-bottom: 40px;
    color: #fff;
}
/* #777 */
form fieldset input{
    width:80%;
    padding:10px 5px;
    margin:5px 0;
    border:0;
    border-bottom:1px solid #fff;
    /* #999 */
    outline:none;
    background: transparent;
    color: #fff;
}
::placeholder{
    color:#777;
}
.inset{
    margin-left: 40px;
}
.btn-box{
    width:100%;
    margin-top: 20px;
    text-align:center;
}
form fieldset button{
    width:110px;
    height:35px;
    margin:0 5px;
    background:linear-gradient(to right,#FFFB7D,#85FFBD);
    border:0;
    outline:none;
    color:#000;
    font-weight: bold;
    cursor:pointer;
    border-radius: 30px;
}
/* #page2{
    left:450px;
} */
.progressbar{
    width: 300px;
    height: 40px;
    margin: 0 auto;
    display:flex;
    align-items: center;
    box-shadow: 0 -1px 5px -1px #000;
    position: relative;
}
.progressstep{
    width:75px;
    text-align: center;
    color:#fff;
    font-weight: bold;
    position: relative;
}
#progress{
    position: absolute;
    height: 100%;
    width:65px;
    background:linear-gradient(to right,#FFFB7D,#85FFBD);
    transition: 1s;
}
#progress::after{
    content: '';
    height:0;
    width:0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    right: -20px;
    top: 0;
    border-left: 20px solid #85FFBD;
}
#st1{
    color: #000;
    font-weight: bold;
}
.dropcontainer{
    min-height: 100vh;
    display:flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}
.dropdown *{
    box-sizing: border-box;
}
.select{
    background: #2a2f3b;
    color: #fff;
    font-weight: 400;
    display:flex;
    justify-content: space-between;
    align-items: center;
    border: 2px #2a2f3b solid;
    border-radius: 0.5em;
    padding: 1em;
    width: 200px;
    cursor:pointer;
    transition: background 0.3s;


}
.select-clicked{
    border: 2px #26489a solid;
    box-shadow: 0 0 0.8em #26489a
}
.select:hover{
    background:#323741;
}
.caret{
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: 0.3s;


}
.caret-rotate{
    transform: rotate(180deg);
}
.menu{
    list-style-type: none;
    padding: 0.2em 0.5em;
    background: #323741;
    border: 1px #363a43 solid; 
    box-shadow: 0 0.5em 1em rgba(0,0,0,0.2);
    border-radius: 0.5em;
    color: #9fa5b5;
    position:absolute;
    top:3em;
    left: 50%;
    width:100%;
    transform: translateX(-50%);
    opacity: 0;
    display: none;
    transition:0.2s;
    z-index: 1;
}
.menu li{
    padding:0.7em 0.5em;
    margin: 0.3em 0;
    border-radius: 0.5em;
    cursor:pointer;

}
.menu li:hover{
    background: #2a2d35;

}
.active{
    background:#23242a;

}
.menu-open{
    display: block;
    opacity: 1;

}
.form-selection{
    background-color: #2a2f3b;
    font-size: 15px;
    color:#777;
    width:83%;
    padding:10px 10px 10px 0;
    box-sizing: border-box;
    margin-top: 15px;
    border-bottom: 1px solid white !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.form-selection:focus , .form-selection:active , .form-selection:enabled
{
    outline: none;
}

#submitt{
    background: #324244;
    color:white;
}
.checkgrid{
    margin-top: 10px;
    margin-left: 0;
    display:grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    /* height: 2px; */
}
/* #tnc{
    height: 5px;
} */