.contactform-wrapper {
  display: flex;
   flex-direction: column; 
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
padding:10px;
line-height: 1.5; font-family: sans-serif;
}
#contactForm h2 {
      margin-bottom: 15px;
      text-align: center;
font-size: 22px;
line-height: 1.5; font-family: sans-serif;
    }
#contactForm {
  background: #ffffff;
  background: transparent;
  padding: 10px;
  min-width: 100px;
 max-width: 400px;
  width:90%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin-left:10px;
margin-right:10px;
line-height: 1.5; font-family: sans-serif;
}
#contactForm input,
  #contactForm textarea {
      width: 95%;        /* same width */
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
      box-sizing: border-box;
  background:#f2f2f2;
line-height: 1.5; font-family: sans-serif;
    }
     #contactForm button {
      width: 100%;        /* full width */
      padding: 10px;
      background: #FFA500;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }
#contactForm button:hover {
      background: #ff8c00;
    }
    
    .mail-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}