body {
    background-color: hsl(148, 38%, 91%);
    display: flex;
    justify-content: center;
    align-items: center;
}
form{
    width: 40%;
    height: auto;
    background-color: white;
    border-radius: 10px;
    margin-top: 60px;

}
h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 25px;
    font-weight: 700;

    color: hsl(187, 24%, 22%);
}
label{
    color: hsl(187, 24%, 22%);
    font-size: 13px;
}
.btn1{
    background-color: hsl(169, 82%, 27%);
    color: white;
}
#message{
    height: 80px;
}
@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
    }
    form{
        width: 98%;
        height: 90%;
    }
    .sr{
        margin: 0 !important;
        margin-top: 20px !important;
    }
}