.container {
  max-width: 1140px;
  margin: 0 auto;

  /* external */
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  /* external */
}

.header {
  text-align: center;
  padding: 20px 0;
}

.footer {
  text-align: center;
  padding: 20px 0;
}

.main-card {
  border-radius: 25px;
}

.left-box {
  background-color: #E5E9F2;
  border-radius: 25px;
  align-content: center;
}

.right-box {
  background-color: #ffffff;
  border-radius: 25px;
}

.user-icon {
  color: #464E59;
  padding: 10px;
  background-color: #F4F4F4;
  border-radius: 50%;
  font-size: 25px;
}

.common-seperator {
  border-top: 5px solid #F4F4F4;
}

.join-owner-info{
  word-break: break-word;
}

/* inside card */
.join-title-one {
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  line-height: 45px;
  word-spacing: 0px;
  padding: 0 15px 0 15px;
}

.join-title-two,
.join-middle-heading-title-two {
  font-size: 30px;
  line-height: 35px;
  text-decoration: none solid rgb(28, 31, 38);
  word-spacing: 0px;
  text-align: center;
}

.join-middle-heading-title-two {
  font-weight: 600;
}

/* inside card */

#videoContainer {
  border-radius: 20px;
}

/* join form */
.custom-form-group {
  margin-bottom: 10px;
}

.custom-form-group label {
  display: block;
  font-weight: bold;
}

.custom-form-group input[type="text"],
.custom-form-group input[type="email"],
.custom-form-group select {
  text-decoration: none solid rgb(38, 38, 38);
  word-spacing: 0px;
  width: 100%;
  border: 1px solid #69727D;
  padding: 8px 16px 8px 16px;
  height: 40px;
}

.custom-form-group select {
  appearance: none;
  -webkit-appearance: none;
}

.custom-form-group .checkbox-label {
  margin-left: 5px;
}

.custom-form-group input[type="checkbox"] {
  vertical-align: middle;
}

#verifyEmailButton {
  min-height: 40px;
  width: 100%;
  background-color: #E5E9F2;
  border-radius: 20px;
}

.join-success-text-p1 {
  font-size: 35px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
  word-spacing: 0px;
}

.join-success-text-p2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none solid rgb(38, 38, 38);
  text-align: center;
  word-spacing: 0px;
}

/* join form */


/* otp */
#otpDiv #otpInput,
#otpDiv #countdown {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
  font-weight: bold;
}

#otpDiv #termsTxt {
  font-size: 15px;
}

/* Chrome, Safari, Edge, Opera */
#otpInput::-webkit-outer-spin-button,
#otpInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
#otpInput[type=number] {
  -moz-appearance: textfield;
}

/* otp */
#submitButton {
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  text-decoration: none solid rgb(44, 51, 64);
  color: #2C3340;
  border: 10px solid #9e9e9e57;
  padding: 10px;
  min-height: 40px;
  width: 100%;
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  cursor: pointer;
}

#submitButton:hover {
  color: #7B838C;
  border: 10px solid #fcd8e6;
}

@media only screen and (max-width: 767px) {
  .join-title-one {
    font-size: 25px;
  }

  .join-title-two,
  .join-middle-heading-title-two {
    font-size: 22px;

  }
}

@media only screen and (max-width: 425px) {
  .join-success-text-p1 {
    font-size: 30px;
  }

  .join-success-text-p2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 375px) {
  #submitButton {
    font-size: 25px;
  }
}

/* dropdown */
.custom-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle-button {
  background-color: #212529;
  border-radius: 50%;
  /* color: #212529; */
  border: none;
  padding: 10px 5px 10px 5px;
  /* font-size: 16px; */
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  display: none;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #212529;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f6f5fa;
}

.custom-dropdown:hover .dropdown-menu {
  display: block;
}

/* dropdown */