
    /* Paste all the CSS I gave here */
    #contact input {
      width: 100%;
      padding: 14px 18px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 16px;
      font-family: Poppins, sans-serif;
      transition: all 0.3s ease;
    }

    #contact input:focus {
      border-color: #ff3f6c; 
      box-shadow: 0 0 6px rgba(255, 63, 108, 0.4);
      outline: none;
    }

    #contact button {
      width: 100%;
      padding: 15px;
      font-size: 18px;
      font-family: Poppins, sans-serif;
      font-weight: 600;
      color: #fff;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      background: linear-gradient(135deg, #ff3f6c, #8e2de2);
      transition: all 0.3s ease;
    }

    #contact button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    @media(max-width:768px){
      #contact {
        padding:40px 20px;
      }
      #contact h2 {
        font-size:28px;
      }
    }



