.create-account {
  background: #85080b;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 50px;
  padding-bottom: 50px;
}

.create-account-content {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
  gap: 40px;
}

.create-account-content h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-align: start;
}

.create-account-form-box-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.create-account-form-box-item-input-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.create-account-form-box-item-input-box label {
  color: #85080b;
  font-size: 14px;
  font-weight: 600;
  text-align: start;
  font-family: inherit;
}

.create-account-form-box-item-input-box input {
  border: none;
  font-size: 14px;
  padding: 12px 16px;
  font-style: normal;
  font-family: inherit;
  font-weight: 400;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  color: #475569;
  display: block;
}

.create-account-form-box-item-input-box input:focus {
  border: #046bd2;
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  color: #475569;
  border-style: dotted;
  border-width: thin;
}

.create-account-form-box {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.create-account-form-profile-box {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  background-color: #dfd2d4;
  width: 50%;
  border-radius: 10px;
}

.create-account-form-password-box {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  background-color: #dfd2d4;
  width: 50%;
  border-radius: 10px;
  margin-bottom: auto;
}

.create-account-form-box-item-privacy-box {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}

.create-account-form-box-item-privacy-box label {
  color: #475569;
  font-size: 14px;
  text-align: start;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  font-family: system-ui;
}

.privacy-terms {
  font-size: 14px;
  color: #555;
  text-align: start;
  line-height: 20px;
  font-family: system-ui;
}

.create-account-form-box-item-privacy-box button {
  background-color: #85080b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 425px) {
  .create-account-form-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .create-account-content h1 {
    text-align: center;
  }
  .create-account-form-profile-box {
    width: 80%;
  }
  .create-account-form-password-box {
    width: 80%;
  }
  .create-account-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
