 * {
      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;
    }

    .form-container {
      background: white;
      padding: 35px;
      margin-top: 120px;
      margin-bottom: 120px;
      margin-left: 600px;
      width: 450px;
      border-radius: 18px;
      box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
    }

    h2 {
      text-align: center;
      color: #ff2f68;
      margin-bottom: 20px;
    }

    label {
      font-weight: bold;
      font-size: 14px;
      display: block;
      margin-bottom: 8px;
    }

    input {
      width: 100%;
      padding: 12px;
      margin-bottom: 18px;
      border-radius: 10px;
      border: 1px solid #ddd;
      font-size: 14px;
      outline: none;
    }

    input:focus {
      border-color: #ff2f68;
    }

    /* ✅ Language Chips */
    .language-box {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .chip {
      padding: 10px 15px;
      border-radius: 20px;
      border: 1px solid #ccc;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s;
      user-select: none;
    }

    .chip:hover {
      border-color: #ff2f68;
    }

    .chip.active {
      background: #ff2f68;
      color: white;
      border-color: #ff2f68;
    }

    button {
      width: 100%;
      padding: 12px;
      background: #ff2f68;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      color: white;
      font-weight: bold;
      cursor: pointer;
    }

    button:hover {
      background: #e60045;
    }

    @media(max-width: 500px) {
      .form-container {
        width: 90%;
      }
    }
    .multi-select {
  position: relative;
  margin-bottom: 18px;
}

.select-box {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  min-height: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.select-box span {
  background: #ff2f68;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 13px;
}

.dropdown {
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-height: 180px;
  overflow-y: auto;
  z-index: 10;
}

.option {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
}

.option:hover {
  background: #ffe6ee;
}

.option.selected {
  background: #ff2f68;
  color: white;
}
.multi-select {
  position: relative;
  margin-bottom: 18px;
}

/* Selected Box */
.selected-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  min-height: 45px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.placeholder {
  color: gray;
  font-size: 14px;
}

/* Selected Tags inside Box */
.tag {
  background: #ff2f68;
  color: white;
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag span {
  cursor: pointer;
  font-weight: bold;
}

/* Dropdown Options */
.dropdown {
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-height: 170px;
  overflow-y: auto;
  z-index: 999;
}

.option {
  padding: 10px;
  cursor: pointer;
}

.option:hover {
  background: #ffe3ea;
}
@media screen {
  
}
/* ✅ Responsive Fix for All Screens */
@media (max-width: 1200px) {
  .form-container {
    margin-left: auto;   /* ✅ remove fixed margin */
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .form-container {
    width: 90%;          /* ✅ full width on mobile */
    margin-left: auto;   /* ✅ center */
    margin-right: auto;
    margin-top: 120px;
    margin-bottom: 60px;
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .form-container {
    width: 95%;
    margin-top: 100px;
    margin-bottom: 40px;
    padding: 20px;
  }
}
