/* Eli Health - Common Page Styles */
/* Using official Eli design system tokens */

/* Spezia Font Face Declarations */
@font-face {
  font-family: 'Spezia';
  src: url('/fonts/Spezia-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Spezia';
  src: url('/fonts/Spezia-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Spezia';
  src: url('/fonts/Spezia-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

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

body {
  font-family: "Spezia", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  background: #F6F7F4; /* eliNeutral */
  color: #000000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  line-height: 1.6;
}

.container {
  max-width: 480px;
  width: 100%;
}

.card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.background-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  z-index: 0;
}

.blob-1 {
  width: 200px;
  height: 200px;
  background: #AC5EC7; /* eliViolet */
  top: -50px;
  right: -50px;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: #FF833F; /* eliTangerine */
  bottom: -30px;
  left: -30px;
}

.content {
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.logo-image {
  width: 120px;
  height: auto;
  margin-bottom: 32px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 28px; /* Title 1 - Spezia design system */
  color: #000000;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.41px;
  line-height: 34px;
}

p {
  font-size: 17px; /* Body - Spezia design system */
  color: #8E8E8E; /* eliGrey */
  line-height: 22px;
  letter-spacing: -0.41px;
  margin-bottom: 32px;
  font-weight: 400;
}

.warning-notice {
  background: #FFF9E6; /* Light yellow background */
  border: 2px solid #EDEA38; /* eliYellow */
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 14px; /* Body Medium */
  color: #685549; /* eliTaupe */
  font-weight: 500;
  line-height: 20px;
}

.warning-notice .icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.banner-notice {
  background: #E8F0FF; /* Light blue background */
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 14px; /* Body Medium */
  color: #621164; /* eliPurple */
  font-weight: 500;
  line-height: 20px;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 12px 16px; /* Vertical: 12px, Horizontal: 16px */
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 20px; /* Button Text */
  letter-spacing: -0.35px;
  line-height: 28px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  min-height: 48px; /* Button medium size */
}

.btn:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
  opacity: 0.85;
}

.footer {
  margin-top: 32px;
  font-size: 12px; /* Body Small */
  color: #8E8E8E; /* eliGrey */
  text-align: center;
  line-height: 16px;
}

.footer a {
  color: #621164; /* eliPurple */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #AC5EC7; /* eliViolet */
}
