
    .form-layout {
      width: 100%;
      min-width: 600px;
      padding: 2rem;
      background-color: rgba(255, 255, 255, 0.95);
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.25);
      color: #252525;
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    .form-header {
      text-align: center;
      margin-bottom: 20px;
      margin-top: 10px;
    }

    .form-header h2 {
      font-weight: 500;
      color: #7e7e7e;
    }
    .form-layout a{
      color: var(--bgthemes);
      list-style: none;
      text-decoration: none;
    }
    .form-group {
      margin-bottom: 15px;
    }

    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
       color: #7e7e7e;
    }

    input, textarea ,select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    textarea {
      resize: none;
      height: 100px;
    }

    .form-body button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 150px;
      padding: 10px;
      border: none;
      background: #007BFF;
      color: white;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: #0056b3;
    }


    /* =========================
   MOBILE (<= 495px)
========================= */
@media (max-width: 495px) {

  .form-layout {
      width: 100%;
      min-width: 400px;
      padding: 2rem;
      background: var(--bgthemes);
      box-shadow: none;
      box-sizing:none;
    }
    label {
      font-weight: bold;
      color: #ffffff;
    }
    .form-header h2, .form-layout a{
       color: #ffffff;  
    }
}

/* =========================
   SMALL DEVICES (<= 360px)
========================= */
@media (max-width: 360px) {
  .form-layout {
      width: 100%;
      min-width: 300px;
      padding: 8px;
      margin-top: -100px;
    }
}