body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
  background-image: linear-gradient(147deg, #000000 0%, #2c3e50 74%);
  height: 100vh;
  color: whitesmoke;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.add-button {
  position: absolute;
  top: 1px;
  left: 1px;
}
.container {
  margin: auto;
  width: 60%;
  max-width: 600px;
  margin-top: 5em;
  padding: 2em;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.container > h1 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

 .box {
  margin-top: 1em;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

 .box > .checkbox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 1em;
}

 .box > .field {
  margin-top: 1em;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.box > .field > .field-input:first-child {
 flex-basis: 25%;
}
.box > .field > .field-input {
  flex-basis: 70%;
 }
 .box > .field > input {
  padding: 0.5em;
  width: 90%;
  border-radius: 5px;
  border: 2px solid #03409b52;
  background: #0e0a0a27;
  color: whitesmoke;
}
 .box > .submit {
  margin-top: 2em;
}

.error-spot {
    background: hsla(9, 100%, 64%, 0.24);
    border-radius: 2px;
    padding: 0.5em;
    width: 90%;
}

.error-spot p{
   margin: 0;
   font-size: 13px;
}

.button {
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    background-position: top center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    transition-property: background, color;
  }

.button2 {
  padding: 0.5em;
  width: 50%;
  cursor: pointer;
  color: #fff;
  border-radius: 5px;
  background-image: linear-gradient(
    90deg,
    #0065ff,
    #6942ef,
    #6554c0,
    #008cff,
    #0065ff,
    #6942ef
  );
  background-size: 400%;
  background-position: 0% 0%;
  border: 0;
}

.button2::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  background-image: linear-gradient(
    90deg,
    #0065ff,
    #6942ef,
    #6554c0,
    #008cff,
    #0065ff,
    #6942ef
  );
  background-size: 500%;
  background-position: 0% 0%;
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s;
}
.button2:hover {
  animation: gradientRotate 2s infinite;
}
.button2:hover::before {
  opacity: 1;
  animation: gradientRotate 2s infinite;
}
.button2:active {
  color: #c3c4d5;
}
.button2:focus::before {
  opacity: 1;
}

.button3 {
  width: 100%;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.password-container {
  border: 1px solid #0065ff;
  margin-top: 1em;
  padding: 0.5em;
  display: flex;
  justify-content: start;
}
.password-container > span {
  margin-right: 1em;
  align-self: baseline;
}

#loader {
  border: 12px solid #0065ff;
  border-radius: 50%;
  border-top: 12px solid #444444;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
      transform: rotate(360deg);
  }
}

.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
