* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  background: #faf5ee;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 120px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

h1 {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  color: #333;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
}

.subtitle {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.5;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.option {
  padding: 24px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.option:hover {
  border-color: #6a5ce9;
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 92, 233, 0.15);
}

.option.primary {
  background: #6a5ce9;
  color: white;
  border-color: #6a5ce9;
  box-shadow: 0 4px 15px rgba(106, 92, 233, 0.2);
}

.option.primary:hover {
  background: #5a4fd8;
  box-shadow: 0 8px 25px rgba(106, 92, 233, 0.3);
  transform: translateY(-3px);
}

.option-content {
  flex: 1;
  text-align: left;
}

.option-arrow {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 20px;
  font-weight: bold;
  opacity: 0.8;
  margin-left: 20px;
  flex-shrink: 0;
}

.option-title {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.option-description {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
}

.option.primary .option-description {
  opacity: 0.9;
}

.footer {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e1e5e9;
  color: #999;
  font-size: 12px;
}

@media (max-width: 480px) {
  body {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }

  .container {
    padding: 30px 20px;
    margin-top: 0;
  }

  .logo {
    width: 100px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .option {
    padding: 20px;
  }

  .option-arrow {
    font-size: 18px;
    margin-left: 15px;
  }
}
