html, body {
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  background: linear-gradient(176deg, #0080ff 0%, #115ffb 25%, #5540fb 50%, #b620e0 75%, #f7b500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layout */
.splash-container {
  text-align: center;
  width: 100%;
  max-width: 1280px;
  height: 832px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Logo */
.logo {
  width: 216px;
  height: 76px;
  margin-bottom: 125px;
}

/* Text */
.headline {
  font-size: 50px;
  line-height: 65px;
  font-weight: 500;
  margin: 0 0 60px 0;
}

/* Login button */
.login-btn {
  background-color: #0080FF;
  color: #FFFFFF;
  border: 1.5px solid #FFFFFF;
  border-radius: 4px;
  width: 136px;
  height: 48px;
  font-size: 21px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.01);
}

.login-btn:hover {
  transform: scale(1.03);
  box-shadow: 0px 6px 12px rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
  position: absolute;
  bottom: 20px;
  font-size: 12px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .headline {
    font-size: 32px;
    line-height: 44px;
  }
  .logo {
    width: 140px;
  }
  .login-btn {
    width: 120px;
    height: 42px;
    font-size: 18px;
  }
}
