/* =========================
   Stile, die auf der Startseite verwendet werden.
========================= */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0 !important;
  max-width: none !important;

  width: 100vw;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 30px;

  background: linear-gradient(
    135deg,
    #c7cfde 0%,
    #f1dfe3 55%,
    #ece5db 100%
  );

  box-sizing: border-box;
}


/* =========================
   CONTAINER
========================= */

.start-page {
  width: 100%;
  max-width: 420px;

  text-align: center;
}


/* =========================
   LOGO
========================= */

.start-logo {
  width: 150px;
  height: auto;

  margin-bottom: 35px;
}


/* =========================
   TEXT
========================= */

.start-page h1 {
  margin: 0 0 15px;

  font-size: 46px;
  line-height: 1.1;

  color: var(--text-dark);
}

.start-subtitle {
  margin: 0 0 50px;

  font-size: 17px;
  line-height: 1.4;

  color: var(--text-light);
}


/* =========================
   BUTTONS
========================= */

.start-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.primary-button,
.secondary-button {
  width: 100%;
  height: 70px;

  border-radius: 22px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 600;

  text-decoration: none;

  box-sizing: border-box;
}

.primary-button {
  background: linear-gradient(
    90deg,
    #9F83CF 0%,
    #B7BEDC 100%
  );

  color: white;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.secondary-button {
  background-color: rgba(255, 255, 255, 0.65);

  color: var(--primary);
}