@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap");
* {
  font-family: "Roboto", sans-serif;
}

.splashScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column; /* Mengatur tata letak ke dalam kolom */
  justify-content: center;
  align-items: center;
  background: radial-gradient(
      circle at 94.35384114583333% 89.61588541666666%,
      #e9529c 0%,
      20%,
      rgba(233, 82, 156, 0) 40%
    ),
    radial-gradient(
      circle at 6.503906249999999% 88.037109375%,
      rgba(205, 161, 231, 0.99) 0%,
      25%,
      rgba(205, 161, 231, 0) 50%
    ),
    radial-gradient(
      circle at 6.165364583333333% 12.617187499999998%,
      #ef0045 0%,
      42%,
      rgba(239, 0, 69, 0) 70%
    ),
    radial-gradient(
      circle at 93.6865234375% 11.42578125%,
      #f9c614 0%,
      42%,
      rgba(249, 198, 20, 0) 70%
    ),
    radial-gradient(
      circle at 48.9013671875% 49.521484375%,
      #ffffff 0%,
      100%,
      rgba(255, 255, 255, 0) 100%
    );
}

.splashScreen img {
  width: 30%;
}

.splashScreen > .button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.white {
  color: #fff;
}

.button-56 {
  align-items: center;
  background-color: #fee6e3;
  border: 2px solid #560c52;
  border-radius: 8px;
  box-sizing: border-box;
  color: #560c52;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.button-56:after {
  background-color: #560c52;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform 0.2s ease-out;
  z-index: -1;
}

.button-56:hover:after {
  transform: translate(0, 0);
}

.button-56:active {
  background-color: #ffdeda;
  outline: 0;
}

.button-56:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-56 {
    padding: 0 40px;
  }
}
