body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: black;
  color: white;
  align-items: center;
  height: 100vh;
}
*{
  box-sizing: border-box;
}


.form-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

h2 {
  margin-top: 0;
  text-align: center;
  color: white;
}

input, select {
  background-color: black;
  color: white;
  padding: 10px;
  border: 1px solid white;
  border-radius: 3px;
  font-size: 14px;
}

input::placeholder {
  color: #ccc;
}

.authb {
  padding: 10px;
  background: black;
  color: white;
  border: 1px solid white;
  border-radius: 3px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.authb:hover {
  background-color: white;
  color: black;
}

p {
  text-align: center;
  font-size: 14px;
}

a {
  color: #66ccff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}
.form-box {
  color: white;
  font-family: sans-serif;
  max-width: 350px;
  margin: auto;
  width: 100%;
}
.custom-multiselect button {
  width: 100%;
  padding: 10px;
  border: 1px solid #ffffff;
  background: #000000;
  cursor: pointer;
  text-align: left;
  font-weight: lighter;
  color: inherit;
}

.custom-multiselect-content {
  display: none;
  border: 1px solid #ffffff;
  border-radius: 3px;
  background: #000000;
  margin-top: 5px;
  padding: 10px;
}

.custom-multiselect-content label {
  display: block;
  margin-bottom: 5px;
}

.custom-multiselect-content input[type="checkbox"] {
  margin-right: 8px;
}
.back-button {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 20px;
  margin-top: 20px;

  cursor: pointer;
  border: 1px solid #ffffff;
  border-radius: 3px;
}
.tools{
  display: flex;
  justify-content: space-between;
}

.hidden {
  display: none;
}



@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



.timer {
  color: #ffffff;
  font-size: 0.9em;
  text-align: right;
  margin: 0;
}

#resend-code {
  background: none;
  border: none;
  color: #66ccff;
  cursor: pointer;
  padding: 0;
}

#resend-code:hover {
  text-decoration: underline;
}
@media all and (max-width: 768px) {
.form-box{
  width: 80%;
}
}