#register_page {
  background-image: url(../images/login-banner.jpg);
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 600px) {
  #register_page {
    background: none;
    padding: 0;
  }
}
.register-page-container {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  max-width: 58rem;
  margin: 0 auto;
  padding: 5rem 4rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.register-page-container .entry-title {
  margin: 0 0 .8rem;
  font-size: 4rem;
  font-weight: 400;
  text-align: left;
  line-height: 4.8rem;
}
@media screen and (max-width: 600px) {
  .register-page-container {
    background: #fff;
    padding: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .register-page-container .entry-title {
    font-size: 2.8rem;
  }
}
.entry-description {
  text-align: left;
  font-family: Inter;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0;
  padding: 0 8rem 0 0;
}
.entry-description .register-link {
  color: #464be8;
  text-decoration: none;
}
.register-form-container .register-fullname, .register-form-container .register-email, .register-form-container .register-password {
  display: flex;
  flex-direction: column;
}
.register-form-container .register-fullname label, .register-form-container .register-email label, .register-form-container .register-password label {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8rem;
  letter-spacing: 0;
  vertical-align: middle;
  text-align: left;
}
.register-form-container .register-email label, .register-form-container .register-password label {
  padding-top: 3rem;
}
.register-form-container .register-email .register-fullname label, .register-form-container .register-password .register-fullname label {
  padding-top: 2.5rem;
}

  .register-fullname label {
    padding-top: 2.5rem;
  }
  
  .register-password {
      position: relative;
  }
#register-submit {
  width: calc(100% - 4rem);
  height: 6.4rem;
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 6.4rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0px;
  margin-top: 0;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
}

#register-submit:disabled {
      background-color: #cccccc;
      color: #666666;
      cursor: not-allowed;
      opacity: 0.7;
}

@media screen and (max-width: 600px) {
  #register-submit {
    width: 100%;
  }
}
.trial-description {
  font-weight: 400;
  font-size: 1.2;
  line-height: 1.8;
  letter-spacing: 0px;
  text-align: center;
  color: #000000;
  margin: 1.6rem 0;
}
.trial-description .privacy-link {
  color: #464be8;
  text-decoration: none;
}
#user_fullname, #user_email, #user_password, #user_password2 {
  font-size: 1.8rem;
  padding: 1rem 1.5rem;
  width: calc(100% - 4rem);
  outline: none;
  background: transparent;
  color: #000000;
  border: 0;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  transition: 0.3s ease;
}
.radio-buttons-container {
  text-align: left;
  padding: 2.4rem 0 0 0;
}
.radio-container {
  display: inline-block;
  margin-right: 20px;
}
.custom-radio {
  display: none;
}
.custom-radio:disabled + label {
  opacity: 0.5;
}
.custom-radio:disabled + label::before {
  border-color: rgba(0, 0, 0, 0.5);
}
.custom-radio + label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.custom-radio + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #464be8;
  border-radius: 50%;
  background-color: transparent;
}
.custom-radio:checked + label:before {
  border-color: #464be8;
  background-color: transparent;
}
.custom-radio:checked + label:after {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 0.8rem;
  background-color: #464be8;
  border-radius: 50%;
}
.password-tip-text {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0px;
  color: #000000;
  text-align: left;
}
.password-tip-list {
  margin: 0;
  padding: 0 0 0 2rem;
}
.password-tip-list li {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0px;
  color: #000000;
  text-align: left;
}
.register-password__confirm {
  margin-bottom: 2rem;
}

#password-rules {
  font-family: sans-serif;
  font-size: 14px;
  margin-top: 10px;
  color: #555;
}

#password-rules ul {
  list-style-type: none;
  padding-left: 0;
}

#password-rules li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
  transition: color 0.3s;
}

#password-rules li.invalid::before {
  content: '\2022'; 
  color: #000; 
  position: absolute;
  font-size: 2rem;
  left: 0;
}

#password-rules li.valid {
  color: #228b22; 
  text-decoration: none;
}
#password-rules li.valid::before {
  content: '✔'; 
  color: #228b22; 
  position: absolute;
  left: 0;
}

.notice-error {
  max-width: 56rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.5) 0%, rgba(255, 71, 87, 0.5) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.2);
  padding: 1rem;
  border-radius: 20px;
  margin: 0 auto 4rem auto;
  font-size: 1.4rem;
}

.notice-error ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cs-password__toggle {
  position: absolute;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  
  width: 20px;
  height: 20px;
  
  background-image: url(../images/icon-show.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cs-password__toggle--show {
  background-image: url(../images/icon-hide.png);
}
