.add-server {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(235, 147, 10, 0.15);
  border-radius: 20px;
  color: white;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.form-wrapper {
  background: none;
  padding: 25px;
}

.add-server h2 {
    font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

.notice {
  font-size: 14px;
  text-align: center;
  margin-bottom: 33px;
  line-height: 1.4;
}

.ad-box {
  background: #D9D9D9;
  color: #000000;
  text-align: center;
  display: flex!important;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 572px;
  height: 107px;
  margin-bottom: 20px;
  border-radius: 8px;
}

form label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

label p {
    font-size: 14px;
}

form input,
form select {
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  margin-top: 5px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

form input, form select::placeholder {
    font-size: 12px;
}

.custom-select-server {
  position: relative;
  width: 120px;
  height: 31px;
  font-size: 11.83px;
  user-select: none;
}

.select-trigger-server {
  background: rgba(0, 0, 0, 0.3);
  width: 120px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  position: relative;
}

.select-trigger-server::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url('../img/icons/select-trigger-server.svg') no-repeat center/contain;
  pointer-events: none;
}



.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1e1e1e;
  border-radius: 10px;
  margin-top: 7px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.select-option {
  padding: 10px 16px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.select-option:hover {
  background: #333;
}
form input:focus,
form select:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.captcha {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.recapth {
    margin: 0 auto;
    margin-bottom: 22px;
}

.box-server-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-btn {
  width: 204px;
  background-color: #f89b1c;
  color: white;
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.server-btn:hover {
  background-color: #e08000;
}

@media (max-width: 1024px) {
  .add-server {
    flex-direction: column;
    padding: 30px 16px;
    border-radius: 16px;
    margin-bottom: 60px;
  }

  .ad-box {
    width: 100%;
    height: auto;
    font-size: 14px;
    padding: 20px;
  }

  .form-wrapper {
    padding: 20px;
    width: 100%;
  }

  form label {
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
  }

  form input,
  form select {
    width: 100%;
    font-size: 13px;
  }

  .custom-select-server,
  .select-trigger-server {
    width: 100%;
  }

  .select-trigger-server::after {
    right: 10px;
  }

  .captcha {
    flex-direction: column;
    align-items: flex-start;
  }

  .server-btn {
    width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .add-server h2 {
    font-size: 16px;
  }

  .notice {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .ad-box {
    padding: 15px;
    font-size: 13px;
  }

  form label {
    gap: 8px;
  }

  form input,
  form select {
    font-size: 12px;
    padding: 6px;
  }

  .server-btn {
    padding: 10px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .add-server {
    padding: 24px 12px;
    margin-bottom: 50px;
  }

  .form-wrapper {
    padding: 16px;
  }

  .add-server h2 {
    font-size: 15px;
  }

  .notice {
    font-size: 12px;
  }

  .ad-box {
    font-size: 12px;
    padding: 12px;
  }

  form label {
    font-size: 12px;
  }

  .custom-select-server,
  .select-trigger-server {
    font-size: 11px;
    height: 30px;
  }

  .select-trigger-server::after {
    width: 12px;
    height: 12px;
  }

  .server-btn {
    font-size: 12px;
    padding: 10px;
  }
}
