.form-container {
  border-radius: 10px;
  border: 1px solid #000;
  background: #fff;
  box-shadow: 10px 10px 0px 0px #ddedfd;
  margin: auto;
  padding: 48px 34px;
  margin-bottom: 10px;
  width: 60%;
}
.form-section {
  background-color: #fbf9f7;
}
.form-container .row {
  margin-bottom: 24px;
}
.form-label {
  margin-bottom: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: "NeueHaasDisplayBold", sans-serif;
}
.select-desc {
  font-family: "NeueHaasDisplayBold", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1px;
}
.form-checkbox {
  width: fit-content;
  width: 26px;
  margin-right: 8px;
}

.form-checkbox {
  appearance: none;
    width: 60px;
    height: 24px !important;
    border-radius: 2px;
    border: 1px solid #111;
    cursor: pointer;
    position: relative;
}

.form-checkbox:checked::before {
  content: "";
  background-image: url('../images/done-icon.svg');
  background-color: #E3723C;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
  display: inline-block; 
  font-size: 18px;
  color: white; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-input {
  border-radius: 4px;
  border: 1.5px solid var(--black, #111);
  background: var(--white, #fff);
}
.notice {
  color: var(--m-3-black, #000);
  font-family: "NeueHaasDisplayLight", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1px;
  margin-bottom: 35px;
}
.checkbox-container {
  margin-top: 35px;
}
.submit-btn {
    margin: auto;
    width: fit-content !important;
    padding-left: 100px !important;
    padding-right: 100px !important;
}
.game-form {
    display: flex;
    flex-direction: column;
}
.game-form .orange-btn {
  width: 44%;
}
.academy-workshop-section .desc {
  margin-bottom: 0px !important;
}
.checkbox-container div {
  flex-direction: row-reverse;
    display: flex;
}
.checkbox-container label {
    font-family: "NeueHaasDisplayBold", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1px;
}
.checkbox-container div #registration_agree {
  height: fit-content;
}
@media screen and (max-width: 576px) {
    .submit-btn {
        margin: auto;
        width: fit-content !important;
        padding-left: unset !important;
        padding-right: unset !important;
        width: 100% !important;
    }
    .form-container{
        width: 90% !important;
        box-shadow: 10px 10px 0px 0px #DDEDFD;
    }
    .form-checkbox {
      width: 118px;
    }
    .game-form .orange-btn {
      width: 100%;
      background: var(--orange, #e3723c);
      border-style: none;
      color: #fff;
    }
    
}