.window {
  width: 350px;
  height: 450px;
  background-color: #101010;
  border-radius: 12px;
  border: 1px solid #222222;
}

.cards-container {
  width: 1050px;
  height: 450px;
  display: flex;
  transition: margin-left 1s cubic-bezier(.19, 1, .22, 1) 0s;
}

.card {
  min-width: 350px;
  height: 450px;
  display: flex;
  flex-direction: column;
}

input {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: 16px;
  font-variation-settings: "wght" 400;
  height: 36px;
  margin: 5px 10px;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0px 8px;
}

input:focus {
  border: 1px solid #40a2e3;
  outline: none;
}

.title {
  margin: 60px auto;
  font-size: 40px;
}

button {
  background-color: #40a2e3;
  width: 80px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  margin-left: auto;
  cursor: pointer;
}

button:hover {
  background-color: #50b2f3;
}

.nextButtonText {
  font-variation-settings: "wght" 530;
  color: black;
  font-size: 1em;
}

.loader {
  display: none;
  border: 2px solid black;
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin .8s linear infinite;
}

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

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

b {
  font-family: Rubik;
}

.confirm-text {
  font-variation-settings: "wght" 480;
  font-size: 14px;
  margin: 0px 10px;
  text-align: center;
}

.codeInput {
  margin: auto;
}

.codeInputUnit {
  width: 22px;
  font-size: 22px;
  font-variation-settings: "wght" 500;
  text-align: center;
  margin: 2px;
}

h4 {
  font-size: 32px !important;
  margin: 20px auto !important;
}

.pfp-preview {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 0px;
  margin-top: 0px;
  border-radius: 50px;
  cursor: pointer;
}

.pfp-title {
  margin: auto;
  margin-top: 10px;
}

.input-hint {
  margin-left: 12px;
  font-size: 14px;
  color: #bbbbbb;
}

#exhibitionName {
  margin-bottom: 10px;
}

.bottom-container {
  width: calc(100% - 20px);
  display: flex;
  margin: 10px;
  margin-top: auto;
}

.login-anchor {
  line-height: 36px;
  font-size: 15px;
}
