

.main{
    width: 80%;
    background-color: white;
    display: flex;
    flex-direction: column;
    margin: 10px;
   
}
.form{
width: 100%;
padding: 60px 30px 40px 30px;
font-family: poppins,sans-serif;   
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 10px 5px 10px 5px rgba(73, 156, 84, 0.8);
}
.form p{
    font-weight: 400;
    font-size: 16px;
    padding: 5px;
}
.form .top-form{
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 20px;
}
.form .top-form .left-top{
display: flex;
flex-direction: column;
align-content: center;
}
.form .top-form .right-top{
display: flex;
flex-direction: column;
align-content: center;
}
.right-top textarea{
    height: 100%;
    padding: 10px;
}
.form .bottom-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    
}


.bottom-form button{
    margin-top: 10px;
    background-color: #499C54;
    color: white;
    padding: 10px;
    border: 0;
    width: 150px;
    font-family: poppins,sans-serif;
    font-size: 17px;
    font-weight: 700;
}
label{
    font-family: mulish;
    font-size: 16px;
    font-weight: 500;
    color: rgb(88, 88, 88);
}
input,textarea{
    padding: 10px;
    border: 1px solid rgb(204, 204, 204);
    margin-bottom: 15px;
    font-size: 15px;
    font-family: poppins;
}



@media screen and (max-width:500px) {


.main{
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
  
   
}
.form{
width: 100%;
padding: 60px 10px;
font-family: poppins,sans-serif;   
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 0;
}
.form p{
    font-weight: 400;
    font-size: 16px;
    padding: 5px;
}
.form .top-form{
width: 100%;
display: grid;
grid-template-columns: 1fr;
column-gap: 0;
}
.form .top-form .left-top{
display: flex;
flex-direction: column;
align-content: center;
}
.form .top-form .right-top{
display: flex;
flex-direction: column;
align-content: center;
}
.right-top textarea{
    height: 100%;
    padding: 10px;
}
.form .bottom-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    
}


.bottom-form button{
    margin-top: 10px;
    background-color: #499C54;
    color: white;
    padding: 10px;
    border: 0;
    width: 150px;
    font-family: poppins,sans-serif;
    font-size: 17px;
    font-weight: 700;
}
label{
    font-family: mulish;
    font-size: 16px;
    font-weight: 500;
    color: rgb(88, 88, 88);
}
input,textarea{
    padding: 8px;
    border: 1px solid rgb(204, 204, 204);
    margin-bottom: 15px;
    font-size: 13px;
    font-family: poppins;
    width: 100%;
}
textarea{
    height: 400px;
}
}