body{
  font-family:Poppins, Arial;
}

/* HERO */
.join-hero{
  height:540px;
  background:url('../images/join/joinus-banner.webp') center/cover no-repeat;
  position:relative;
  text-align:center;
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:0 16px;
}

.join-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.join-hero h1,
.join-hero p{
  position:relative;
  z-index:2;
  max-width:900px;
}

/* MAIN FORM CARD */
.join-section{
  max-width:900px;
  margin:auto;
  padding:40px 14px 70px;
}

.join-card{
  background:white;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  border-radius:18px;
  padding:24px 20px 30px;
}

.join-card form{
  display:grid;
  gap:10px;
}

.join-card input,
.join-card select,
.join-card textarea{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid #ccc;
}

.join-card textarea{
  min-height:90px;
}

.join-btn{
  margin-top:10px;
  padding:12px;
  border-radius:40px;
  border:0;
  color:white;
  background:linear-gradient(45deg,#ff6a00,#ff9900);
  cursor:pointer;
}

/* MESSAGE BAR */
.join-msg{
  max-width:900px;
  margin:10px auto;
  padding:10px 14px;
  border-radius:10px;
  text-align:center;
}

.join-msg.success{ background:#e7ffe8; color:#0a8a2a; }
.join-msg.error{ background:#ffe7e7; color:#b20000; }

/* RESPONSIVE */
@media(max-width:520px){
  .join-card{ padding:16px; }
}
