*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-color: #f2f4f7;
}
.container{
    /* height: 100vh; */
    
    display: flex;
    flex-direction: column;
    text-align: center;
}
.grey{
    color: rgb(100, 100, 100);
}
form{
    display: flex;
    flex-direction: column;
    width: 420px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
}
form h2{
    margin: -2px 0 4px 0;
    font-size: 26px;
}
form p{
    margin-bottom: 10px;
}
form .inputs{
    width: 100%;
    margin-top: 10px;
            margin-bottom: 11px;

}
.inputs input{
    width: 49%;
    padding: 0.5rem 0.7rem;
    border: 1px solid #ccd0d5;
outline: none;
border-radius: 4px;
font-size: 15px;
}
.dropdowns{
    width: 100%;
    /* display: flex; */
    font-size: 15px;
}
.flex{
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.gender-box{
    width: 32%;
    height: 32px;
    padding: 0 10px 0 8px;
    border: 1px solid #ccd0d5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
     font-size: 15px;
}
.dropdowns select{
    width: 32%;
    height: 32px;
    padding: 0 20px 0 8px;
    border-radius: 4px;
    margin-bottom: 11px;
    font-size: 15px;
    border: 1px solid #ccd0d5;
 }
.text-start{
    text-align: start;
    font-size: 13px;
    color: #606770;
    margin-left: 3px;
}
.input-full{
    height: 39px;
    width: 98.5%;
     margin:  8px auto;
     padding: 0 8px;
     border-radius: 4px;
     border: 1px solid #ccd0d5;
     font-size: 15px;
}
.end-p{
    font-size: 11px;
    color: #777777;
    text-align: justify;
    margin: 8px 4px;
}
.end-p a{
    text-decoration: none;
}
.register{
    width: 50%;
    /* text-align: center; */
    margin: 0 auto;
    padding:  0.6rem;
    font-size: 17px;
    color: white;
    border: none;
    border-radius:6px;
   background-color: #00a400;
   font-weight: bold;
   margin-top: 13px;
}
.register:hover{
    background-color: #41b02a;
}
form > a{
    display: block;
    text-align: center;
    font-size: 17px;
    text-decoration: none;
    margin: 1.3rem 0 10px 0;
    color: #1877f2;
}
@media(max-width:786px){
    form{
       width: auto ;
       margin: 0 0.5rem;
    }
}
@media(max-width:410px){
    .logo img{

        width: 290px;
    }
}