.new-event {
  & fieldset {
    width: 100%;
  }

  & header {
    margin-bottom: 2rem;
    gap: 0 !important;
    display: flex;
    flex-direction: row;
    padding-top: 2rem !important;

    & h2 {
      margin-bottom: 0.5rem;
    }

    & svg {
      width: 125px;
    }

    & .svg--dark {
      display: none;
    }
  }

  & main {
    display: flex;
    flex-direction: column;
    align-items: center;

    & .field,
    & form-field {
      width: 100%;
    }
  }

  & footer {
    padding: 0;
    justify-content: end !important;
  }
}

.dark-mode {
  &.new-event {
    & .svg--light {
      display: none;
    }

    & .svg--dark {
      display: block;
    }
  }
}
