* {
  transition-delay: 20ms;
  transition-duration: 0.7s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-color);
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Comfortaa", sans-serif;
}

:root {
  --primary-color: #181616;
  --secondary-transparent-color: #1d1d1d6c;
  --tertiary-color: #acacac;
  --quartiary-color: #4d4d4d;
  --success-color: #9ecea3;
  --text-color: #fffce6;
}

::-webkit-scrollbar {
  width: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  height: auto;
  width: 100%;
  background-color: var(--primary-color);
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 500px;
  gap: 20px;
  background-color: var(--secondary-transparent-color);
  border-radius: 30px;
  box-shadow: 0 0 30px 0 var(--hover-shadow-color);
  position: relative;
  border: 2px solid var(--quartiary-color);
  padding: 40px 0;
}

.signupButton {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.2rem;
  border: 1px solid var(--quartiary-color);
  background: linear-gradient(
    90deg,
    rgba(97, 0, 0, 0.5) 0%,
    rgba(149, 25, 12, 0.5) 35%,
    rgb(143, 100, 60, 0.5) 100%
  );
  filter: brightness(0.9);
}

.signupButton:hover {
  box-shadow: 0 0 30px 0 var(--hover-shadow-color);
  filter: brightness(1.3);
  cursor: pointer;
}

.blurContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(250px);
  overflow: hidden;
}

.colorBlur {
  border-radius: 50%;
  background: linear-gradient(
    30deg,
    rgba(97, 0, 0, 1) 0%,
    rgba(149, 25, 12, 1) 35%,
    rgb(143, 100, 60) 100%
  );
  width: 500px;
  height: 500px;
  z-index: -2;
  position: fixed;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  width: 80%;
}

input {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--quartiary-color);
  background: linear-gradient(
    90deg,
    rgba(97, 0, 0, 0.5) 0%,
    rgba(149, 25, 12, 0.5) 35%,
    rgb(143, 100, 60, 0.5) 100%
  );
  filter: brightness(0.9);
  width: 100%;
  box-sizing: border-box;
}

input:hover {
  box-shadow: 0 0 30px 0 var(--hover-shadow-color);
  filter: brightness(1.3);
}

input:focus {
  box-shadow: 0 0 30px 0 var(--hover-shadow-color);
  filter: brightness(1.3);
}

input::placeholder {
  color: var(--dark-text-color);
}

form > div > label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

p {
  color: var(--text-color);
  max-width: 80%;
}

a {
  color: var(--tertiary-color);
}

a:hover {
  color: var(--success-color);
}

h1 {
  font-size: 2em;
  font-weight: 700;
  width: 80%;
  text-align: center;
}

form > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

form > div:nth-child(4) {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#tos {
  width: auto;
  height: 15px;
  width: 15px;
}

#error {
  color: var(--tertiary-color);
}

.passwordInput > p{
  font-size: 0.8em;
  color: rgb(252, 68, 48);
  display: flex;
  gap: 5px;
}

.passwordInput > p > i{
  color: rgb(252, 68, 48);
}