.register-container {
  width: 1024px;
  height: 100%;
  margin: 25px auto 0;
  display: block;
}

.register-container .title {
  width: 100%;
  height: 20px;
  color: rgba(92,99,225,1);
  font-weight: 700;
  display: block;
  text-align: center;
}

.register-container .title .name {
  font-size: 18pt;
  font-weight: 900;
  width: 100%;
  display: block;
}

.register-container .content {
  width: 100%;
  text-align: center;
}

#register-form {
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 500px;
}

#register-form input[type="text"],
#register-form input[type="password"] {
  width: 100%;
  max-width: 400px;
  height: auto;
  padding: 12px 15px;
  border: 1px solid #919eec;
  border-radius: 5px;
  color: #3138ad;
  box-sizing: border-box;
  font-size: 14px;
}

#register-form input[type="text"]:focus,
#register-form input[type="password"]:focus {
  outline: none;
  border-color: #ff8418;
}

#register-form button {
  font-style: normal;
  background: rgb(247,178,51);
  background: linear-gradient(180deg, rgb(247, 187, 77) 0%, rgb(251, 146, 54) 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  max-width: 400px;
  font-weight: 900;
  transition: all 0.3s ease;
}

#register-form button:hover {
  background: rgb(247,178,51);
  background: linear-gradient(180deg, rgba(247,178,51,1) 0%, rgba(238,122,21,1) 100%);
}


.separator {
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px dashed rgb(120, 126, 241);
  border-bottom: 0;
  margin: 30px 0;
}

.separator-2 {
  display: block;
  width: 100%;
  height: 1px;
  margin: 30px 0;
  clear: both;
}

.grecaptcha-badge {
  z-index:999;
}

@media only screen and (max-width: 1023px) {
  .register-container {
      width: 98%;
      height: auto;
  }
  #register-form input[type="text"],
  #register-form input[type="password"] {
    width: 90%;
  }
  #register-form button {
    width: 95%;
  }
}