#registerForm {
  position: relative;
  top: 100px;
}

#registerForm table {
  margin: auto;
  border-spacing: 10px 15px;
}

#registerForm .loginLabel {
  text-align: right;
}

#registerForm .loginInput input {
  min-width: 20em;
}

#registerButton {
  margin-top: 40px;
  padding: 5px;
  background: none;
  border: 1px solid white;
  text-transform: uppercase;
  color: white;
  font-size: 20px;
  letter-spacing: 0.15em;
  cursor: pointer;
}

#errorDiv {
  position: relative;
  top: 130px;
  color: #ff6565;
  visibility: hidden;
}

#validDiv {
  position: relative;
  top: 100px;
  color: white;
  visibility: hidden;
}

a {
  color: white;
}

input {
  background: none;
  border: 0px;
  border-bottom: 1px solid white;
  color: white;
}

input:focus {
  outline: none;
}

input:required:invalid, input:focus:invalid, input:-webkit-autofill:invalid {
  background-image: url('./images/invalid_icon.png');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  -moz-box-shadow: none;
}
input:required:valid {
  background-image: url('./images/valid_icon.png');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}

select {
  background: none;
  border: 0px;
  border-bottom: 1px solid white;
  color: white;
  width: 100%;
}

select:focus {
  outline: none;
}

select>option {
  background: #474747;
}

select>option:focus {
  background: #474747;
  border: none;
}

.loginCondition {
  min-width: 150px;
  max-width: 150px;
  white-space: nowrap;
  color: #ff6565;
  font-size: 0.8em;
  position: relative;
  text-align: left;
}

.loginCondition>div {
  position: relative;
  bottom: -3px;
}

#tcDiv {
  margin-top: 35px;
}

#tcLink {
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

#captcha {
  margin-top: 50px;
}


#captcha svg {
  height: 24px;
  width: 24px;
  margin: 10px;
  fill: white;
  border: 1px solid white;
}

#captcha svg.selected {
  fill: #c4d600;
  border: 1px solid #c4d600;
}

#tcOverlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

#tcDialog {
  margin: auto;
  width: 1500px;
  height: 800px;
  background: #474747;
  //border: 1px solid white;
}

#tcTitle {
  font-size: 30px;
  margin-top: 25px;
  width: 100%;
  text-align: center;
  letter-spacing: 0.2em;
}

#tcContent {
  margin: auto;
  margin-top: 25px;
  width: 1200px;
  height: 600px;
  border: 1px solid white;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: left;
  padding: 10px;
}

#tcClose {
  margin-top: 50px;
}
  
#tcClose>span {
  padding: 8px;
  background: none;
  border: 1px solid #ffffff;
  border-radius: 0px;
  text-transform: uppercase;
  color: white;
  font-size: 20px;
  letter-spacing: 0.15em;
  cursor: pointer;
}

::-webkit-scrollbar  {
  width: 8px;
}
 
::-webkit-scrollbar-track {
  border-radius: 0px;
  border: 1px solid #999999;
}
 
::-webkit-scrollbar-thumb  {
  border-radius: 0px;
  background: white;
}