/* REGISTER SECTION */
.register{
  padding: 10px 20px;
  background: #f4f6f9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

/* REMOVE OVERLAY EFFECT */
.join-overlay{
  position: static;
  background: none;
  width: 100%;
  max-width: 420px;
}

/* FORM CARD */
.join-modal{
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  width: 100%;
}

/* HEADING */
.join-modal h2{
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

/* UNDERLINE */
.join-underline{
  width: 60px;
  height: 4px;
  background: #0d6efd;
  margin: 0 auto 25px;
  border-radius: 2px;
}

/* INPUTS & SELECT */
.join-modal input,
.join-modal select{
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #fafafa;
}

/* FOCUS STATE (NO ANIMATION) */
.join-modal input:focus,
.join-modal select:focus{
  border-color: #0d6efd;
  background: #fff;
}

/* BUTTON */
.join-submit{
  width: 100%;
  padding: 14px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* BUTTON HOVER (STATIC COLOR CHANGE ONLY) */
.join-submit:hover{
  background: #0b5ed7;
}

/* MOBILE FRIENDLY */
@media (max-width: 480px){
  .join-modal{
    padding: 28px 20px;
  }

  .join-modal h2{
    font-size: 22px;
  }
}
.join-modal textarea{
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #fafafa;
  resize: none;
  min-height: 100px;
  font-family: "Poppins", sans-serif;
}

/* Focus */
.join-modal textarea:focus{
  border-color: #0d6efd;
  background: #fff;
}
