.form-heading{
    display:flex;
    justify-content: center;
    width:100%;
    height:100px;
    padding:1%;
    box-shadow: 1px 1px 6px -1px #000;
    text-align:center;
}

.form{
    display:flex;
    width:100%;
    justify-content: center;
}

#reused_form{
    width:50%;
    margin:20px;
}

#success_message{
    width:100vw;
    min-height:100px;
    background-color:#5DADE2;
    color:white;
    padding:1%;
    border-radius:4px;
    text-align: center;
}

#error_message{
    width:100%;
    min-height:100px;
    background-color:#d72323;
    color:white;
    padding:1%;
    border-radius:4px;
    text-align: center;
}

input[type=text], select, textarea, input[type=email], input[type=tel] {
  background-color:#c0bfbf;
  color:#000;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #5DADE2;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
}

.form-btn{
    margin-top:20px;
    background-color:#d72323;
    border-radius:30px;
    height:60px;
    width:150px;
    padding:10px;
    color:#FFFFFF;
}

.flex-wrap{
    display:flex;
    justify-content: center;
}

.form-container{
    display:flex;
    justify-content: center;
    width:100%;

}

@media screen and (max-width: 767px) {

    #reused_form{
        width:100%;
    }
}
