:root {
  --bg: #fefefe;
  --bg-2: #ffd9c2;
  --text: #212121;
  --border: #2121210f;
  --border-2: #21212120;
  --primary: #ff8d41;
  --error: #ff4545;
  --success: #7aba63;
}

* {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  user-select: none;
}

a {
  text-decoration: none;
}

.wrapper {
  width: 1440px;
}

button {
  cursor: pointer;
  transition: 0.25s;
  font-size: 14px;
  font-weight: 400;
  border: none;
  outline: none;
  padding: 12px 28px;
  border-radius: 8px;
  border-style: squircle;

  &:hover {
    filter: brightness(0.95);
  }

  &.primary-btn {
    background-color: var(--primary);
    color: var(--bg);

    &:hover {
      filter: brightness(1.1);
    }
  }
}

.title-text {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
}

.p-text {
  font-size: 18px;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.5;
}

form.auth-form {
  filter: drop-shadow(0 0 0.75rem var(--border));
  border: 1px solid var(--border);
  border-radius: 8px;
  border-style: squircle;
  background-color: var(--bg);
  width: 480px;
  padding: 48px 24px 24px;
  display: flex;
  flex-direction: column;
  & input, select {
    outline: none;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-2);
    margin-bottom: 14px;
  }

  & .wachtwoord-input {
    display: flex;
    align-items: center;
    position: relative;
    & input {
      width: 100%;
    }
    & span {
      position: absolute;
      right: 16px;
      transform: translateY(-50%);
      top: 40%;
      cursor: pointer;
      font-size: 20px;
      color: var(--text);
    }
  }
  & label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
  }

  .title {
    padding: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    & h2 {
      font-size: 22px;
      font-weight: 500;
      line-height: 22px;
    }
  }

  & .bottom-text {
    text-align: center;
    margin-top: 14px;
    font-size: 16px;
    font-weight: 400;
    & a {
      color: var(--primary);

      &:hover {
        text-decoration: underline;
      }
    }
  }

  & .error-text {
    text-align: center;
    color: var(--error);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 14px;
  }

  & .success-text {
    text-align: center;
    color: var(--success);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 14px;
  }
}

/* arrows weghalen van input type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}