/* Join Us Page */

.joinSection {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

.joinIllustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.joinIllustration img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  max-width: 100%;
  height: auto;
}

/* Form Card */
.joinFormCard {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(242, 106, 33, 0.08);
}

.joinFormHeader {
  border-bottom: 2px solid var(--orange);
  padding-bottom: 16px;
}

.joinFormTitle {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.75rem;
  margin: 0;
}

/* Form Inputs */
.joinInput {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
  background: #fafafa;
  transition: all 0.3s ease;
  font-family: "Cairo", sans-serif;
}

.joinInput:focus {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 106, 33, 0.1);
  outline: none;
}

.joinInput::placeholder {
  color: #b0b0b0;
}

/* Country Select */
.joinCountrySelect {
  border: 1px solid #e0e0e0;
  border-radius: 0 8px 8px 0;
  background: #fafafa;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.joinCountrySelect:focus {
  background: #fff;
  border-color: var(--orange);
  box-shadow: none;
  outline: none;
}

/* Password Toggle */
.joinPasswordToggle {
  border: 1px solid #e0e0e0;
  background: #fafafa;
  color: #777;
  padding: 0 12px;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.joinPasswordToggle:hover,
.joinPasswordToggle:focus {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff;
  box-shadow: none;
}

/* Submit Button */
.joinSubmitBtn {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.joinSubmitBtn:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 106, 33, 0.3);
}

/* Terms */
.joinTerms a {
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.joinTerms a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .joinSection {
    padding: 30px 0;
  }

  .joinFormCard {
    padding: 30px;
  }

  .joinFormTitle {
    font-size: 1.5rem;
  }

  .joinIllustration {
    order: 2;
  }
}

@media (max-width: 575.98px) {
  .joinSection {
    padding: 20px 0;
  }

  .joinFormCard {
    padding: 20px;
  }

  .joinFormTitle {
    font-size: 1.25rem;
  }

  .joinInput {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}
