/* ==================================================
   Complete Profile Modal
   ================================================== */

#complete-profile-modal .modal-content {
  width: min(100% - 32px, 520px);
  padding: 32px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* --------------------------------------------------
   Header
   -------------------------------------------------- */

#complete-profile-modal .modal-header {
  margin-bottom: 28px;
}

#complete-profile-modal .modal-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

#complete-profile-modal .modal-header p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
}

/* --------------------------------------------------
   Form
   -------------------------------------------------- */

#complete-profile-modal #complete-profile-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --------------------------------------------------
   Form Group
   -------------------------------------------------- */

/* #complete-profile-modal {
  display: flex;
  flex-direction: column;
  gap: 7px;
} */

#complete-profile-modal label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

/* --------------------------------------------------
   Select
   -------------------------------------------------- */

#complete-profile-modal select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;

  border: 1px solid #d1d5db;
  border-radius: 10px;

  background: #ffffff;
  color: #1f2937;

  font-size: 15px;

  outline: none;
  cursor: pointer;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

#complete-profile-modal select:hover {
  border-color: #9ca3af;
}

#complete-profile-modal select:focus {
  border-color: #0099cc;
  box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.12);
}

#complete-profile-modal .form-group input:hover {
  border-color: #9ca3af;
}

#complete-profile-modal .form-group input:focus {
  border-color: #0099cc;
  box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.12);
}

#complete-profile-modal .form-group input::placeholder {
  color: #9ca3af;
}

#complete-profile-modal .modal-content {
  position: relative;
}

#profile-visibility {
  margin-top: 0.2rem;
}

#complete-profile-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

/* --------------------------------------------------
   Save Button
   -------------------------------------------------- */

#complete-profile-modal button[type="submit"] {
  width: 100%;
  min-height: 48px;

  margin-top: 6px;

  border: none;
  border-radius: 10px;

  background: #2864e8;
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.1s ease;
}

#complete-profile-modal button[type="submit"]:hover {
  background: #1f56d0;
}

#complete-profile-modal button[type="submit"]:active {
  transform: translateY(1px);
}

/* --------------------------------------------------
   Mobile
   -------------------------------------------------- */

@media (max-width: 600px) {
  #complete-profile-modal .modal-content {
    width: min(100% - 24px, 520px);
    padding: 24px;
    border-radius: 16px;
  }

  #complete-profile-modal .modal-header h2 {
    font-size: 24px;
  }
}
