.drissel-moon > form {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.drissel-moon-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 33px;
  flex: 0;
}

.drissel-moon-buttons > input[type=button] {
  height: 98px;
  width: 98px;
  border-radius: 50%;
  background-image: url( 'assets/img/swap_white.svg' );
  background-size: 68px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--colourBlue);
  transform: rotate( -90deg );
}

.drissel-moon-buttons > input[type=button]:hover {
  background-color: var(--colourGreenBlue);
  transition: 0.6s;
}

.drissel-moon-inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

@media only screen and (max-width: 600px) {
  .drissel-moon > form {
    flex-direction: column;
  }
}