.contact-map {
    background:grey;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  form {
    padding-left: 20px;
  }
.map {
    padding-top: 15px;
    padding-right: 30px;
}
  input {
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
 }

 textarea {
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
 }

 input[type=submit] {
    width: 20%;
    background-color: red;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }

  iframe {
    width: 100%;
    height: 580px;
}


@media (max-width: 600px) {
    input{
        width: 90%;
    }

    textarea{
        width: 90%;
    }

    input[type=submit] {
        width: 25%; 
    }

    iframe {
        width: 100%;
        height: 400px;
    }

    .contact-map {
        grid-template-columns: repeat(1, 1fr);
    }

    .map {
      padding-top: 15px;
      padding-left: 25px;
  }

}



  