@import url("setup.css");

.register-container {
  width: 100%;
  height: 82vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register {
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.register h2 {
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: var(--gray);
  align-self: center;
}

.register label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--light-gray);
}

.register span {
  font-size: 0.8rem;
  font-weight: 100;
  color: var(--light-gray);
  cursor: pointer;
}

.register button {
  margin-top: 2rem;
  border: none;
  background-color: #000;
  color: #fff;
  width: 20%;
  padding: 0.85rem 0;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 800ms ease;
}

.register button:hover {
  background-color: #fff;
  color: #000;
}

.input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input input {
  padding: 0.8rem 1rem;
  width: 100%;
  border: 1px solid var(--light-gray);
  background-color: rgba(0, 0, 0, 0);
  color: white;
}

.input-password {
  display: flex;
  align-items: center;
}

.login {
  align-self: center;
  text-decoration: underline;
}

.details {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

.details h3 {
  text-transform: uppercase;
  color: var(--light-gray);
  align-self: center;
}

.account-details {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-details p {
  font-size: 0.8rem;
}

.account-details p a {
  color: var(--light-gray);
}

.personal-details {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.no-hover {
  pointer-events: none;
  opacity: 0.5;
}
