*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
body{
    background-color: #ccc;
}


body,html{
    overflow-x: hidden;
}


.parent{
    max-width: 900px;
    margin: 0 auto;
}
.topbar{
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    margin-top: 50px;
    padding: 20px;
    border-radius: 10px;
    box-shadow:4px 4px 5px rgba(1, 1, 1, 0.1);
}
#title{
    font-size: 20px;
}
.form_container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.form-control{
    display: flex;
    flex-direction: column;
}
label{
    font-size: 20px;
    margin-bottom: 5px;
}
input, select, textarea{
    padding: 6px 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    border-radius: 4px;
}
input, select ,textarea:focus{
    outline-color: #05fd4f;
}
.btn-container{
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
button{
    background-color: #05fd4f;
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: bold
}








/* responsive website */
    

@media (max-width:677px){
    .topbar{
        width: 500px;
    }
}


@media (max-width:561px){
    .topbar{
        width: 450px;
    }
}


@media (max-width:495px){
    .topbar{
        width: 400px;
    }
}



@media (max-width:423px){
    .topbar{
        width: 300px;
    }
}