@import url('https://fonts.googleapis.com/css2?family=Figtree&display=swap');

.main-website {
  position: relative;

  width: 100%;
  height: 100vh;
  z-index: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.main-website::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/mainbg.png");
  filter: blur(3px);
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.register-box {
  color: white;
  margin: 30px;
  padding: 20px 20px 20px 20px;
  border-radius: 10px;
  background-color: #232323;
  height: auto;
  min-height: 500px;
  width: 40%;
  box-shadow: 5px 5px 15px -1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 5px 5px 15px -1px rgba(0, 0, 0, 0.65);
}

.icon,
.icon-register {
  font-size: 24px;
  background: linear-gradient(to bottom, #fbc449, #de9900);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  line-height: 1.2;
  padding-top: 5px;
  margin: 5px;
}

.logotaxregister {
  width: 140px;
  height: 40px;
}

.registerhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.formularioregister-inputs {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 15px;
}

.input-box {
  display: flex;
  border: 2px solid #de9900;
  padding: 5px 5px 5px 15px;
  border-radius: 10px;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.input-box:hover {
  transform: translateY(-3px);
}

.input-box>input,
.input-box>select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
  border: none;
  background-color: #232323;
  color: white;
}

.input-box>input::placeholder,
.input-box>select::placeholder {
  color: rgb(129, 129, 129);
  font-family: "Figtree", sans-serif;
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
}

.formularioregister-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}

.botao-register {
  padding: 10px 30px;
  border-radius: 10px;
  background: linear-gradient(to right, #fbc449, #de9900);
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.botao-register:hover {
  color: black;
}

.infos>p,
.infos a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.infos a:hover {
  color: #fbc449;
}

.firstlast {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.firstlast .input-box {
  width: 48%;
}

.findusdiscord {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.findusdiscord .input-box {
  width: 48%;
}

.register-box .formulariologin-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.redesonline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.redesonline .input-box {
  width: calc(33.333% - 20px);
}

.captcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 15px;
}

.success {
  color: green;
}

.error {
  color: red;
}

.input-box>input,
.input-box>select {
  color: rgb(129, 129, 129) !important;
}

.input-box input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

.formularioregister-inputs input {
  color: white !important;

}

.input-box>input,
.input-box>select {
  color: white !important;
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

[type="checkbox"]:not(:checked)+label,
[type="checkbox"]:checked+label {
  position: relative;
  padding-left: 32px;
  padding-top: 3px;
  cursor: pointer;
  margin-bottom: 4px;
  display: inline-block;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked)+label:before,
[type="checkbox"]:checked+label:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 2px solid #de9900;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1);
}

/* checked mark aspect */
[type="checkbox"]:not(:checked)+label:after,
[type="checkbox"]:checked+label:after {
  content: '✔';
  position: absolute;
  top: 4px;
  left: 7px;
  font-size: 16px;
  line-height: 1.2;
  color: #ffffff;
  transition: all .2s;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
}

[type="checkbox"]:checked+label:after {
  opacity: 1;
  transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked)+label:before,
[type="checkbox"]:disabled:checked+label:before {
  box-shadow: none;
  border-color: #999999;
}

[type="checkbox"]:disabled:checked+label:after {
  color: #999999;
}

[type="checkbox"]:disabled+label {
  color: #aaaaaa;
}

/* hover style just for information */
label:hover:before {
  border: 2px solid #ca963f !important;
}

a {
  color: #de9900;
  text-decoration: none;
}

p,
span,
div,
h1,
h2,
h3,
a,
button,
label,
i {
 cursor: default !important;
 -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 880px) {

  .firstlast,
  .redesonline,
  .findusdiscord,
  .register-box .formulariologin-inputs {
    flex-direction: column;
    gap: 15px;
  }

  .firstlast .input-box,
  .findusdiscord .input-box,
  .redesonline .input-box {
    width: 100%;
  }

  .register-box {
    width: 85%;
    margin: auto;
  }

  .redesonline {
    flex-direction: column;
    gap: 15px;
  }
}

@media only screen and (min-width: 881px) and (max-width: 1513px) {
  .register-box {
    width: 60%;
    margin: auto;
  }
}