 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
 justify-content: center;
  align-items: center;
  background: url("assets/images/Cute Finger Heart Drawing Computer Desktop Background Wallpaper.png")
    no-repeat center center/cover;
    }

    /* ✅ FIXED CENTER ALIGN SYSTEM */
    .center-wrapper {
      width: 100%;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .form-box {
      width: 100%;
      margin-left: 560px;
      margin-top: 100px;
      margin-bottom: 100px;
      max-width: 500px;
      background: white;
      padding: 35px;
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(232,76,91,0.1);
      
    }

    h2 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 24px;
      color: #222;
    }

    .input-group {
      margin-bottom: 18px;
    }

    label {
      display: block;
      font-weight: 600;
      margin-bottom: 7px;
      color: #444;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      border: 1px solid #ccc;
      font-size: 15px;
      outline: none;
    }

    input:focus, textarea:focus {
      border-color: #E84C5B;
      box-shadow: 0 0 0 3px rgba(232,76,91,0.12);
    }

    textarea {
      resize: none;
      height: 75px;
    }

    /* ✅ Click Language Selection */
    .lang-box {
      border: 1px solid #ccc;
      border-radius: 12px;
      padding: 12px;
      max-height: 160px;
      overflow-y: auto;
      background: #fafafa;
    }

    .lang-box label {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px;
      cursor: pointer;
      border-radius: 8px;
      transition: 0.2s;
    }

    .lang-box label:hover {
      background: rgba(232,76,91,0.06);
    }

    .lang-box input {
      width: 16px;
      height: 16px;
    }

    /* ✅ Submit Button */
    .btn-submit {
      width: 100%;
      padding: 14px;
      border: none;
      background: #E84C5B;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border-radius: 12px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-submit:hover {
      background: #B51644;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(232,76,91,0.35);
    }