*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* this is a google font */
.font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/* This is a whole form's class */
.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; 
}


select{
    width: 212px;
    height: 35px;
    border-radius: 5px;
    border: solid 1px black;
    padding: 5px;
}

fieldset{
    width: 314px;
    height: 470px;
    border-radius: 5px;
}


/* all input fields position class */
.all{
    margin-top: 15px;
    margin-left: 20px;
}


input{
    height: 35px;
    width: 210px;
    border-radius: 5px;
    border: solid 1px black;
    padding: 10px;
}


/* This is whole font weight class name */
.blk{
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
   
}

/* This is header class name */
.hd{
  margin-right: 5%;
  margin-bottom: 5px;
}

.btn{
    display: block;
    margin-top: 10px;
    width: 90px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color:rgb(42, 104, 236);
    color: white;
    font-weight: bold;
}