.form input{
width: 290px;
margin:7px 0 7px 0;
height: 50px;
 -webkit-border-radius: 5px;
 border: 1px solid #111;;
padding-left: 10px;
filter: drop-shadow(2px 4px 6px black);
}
.form input[type="submit"]{
  background-color: #4fff9e;
  height: 50px;
  -webkit-border-radius: 5px;
  border: none;
  transition: all 0.3s ease;
  filter: drop-shadow(2px 4px 6px black);
  font-weight: bolder;
}
.form input[type="submit"]:hover{
background-color: #42e189;
color:#fff;/*
filter: drop-shadow(2px 4px 6px #0c9048);*/
}
.form__title{
  color: #111111;
  margin-bottom: 10px;
  font-weight: bolder;
      text-shadow: 0px 1px 1px black;

}
::placeholder {
  color: #111;
}
@media (min-width: 1600px){
  .form__title{
    margin-bottom: 15px;
    font-size: 36px;
  }
  .form input {
    width: 320px;
    height: 60px;
    padding-left: 15px;
    font-size: 21px;
    margin: 8px 0 8px 0;
}
.form input[type="submit"]{
      height: 60px;
      font-size: 25px;
    font-weight: bolder;
}
}
@media (max-width: 360px) {
.form input{
  width: 100%;
}
}