.EmailStep {
  width: 100%;
  max-width: 400px;
}
.EmailStep h2 {
  margin: 0 0 16px 0;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .EmailStep h2 {
    color: #f0f2f4;
  }
}
.EmailStep p {
  margin: 0 0 32px 0;
  color: #666;
  line-height: 1.6;
}
@media (prefers-color-scheme: dark) {
  .EmailStep p {
    color: #d0d2d4;
  }
}
.EmailStep form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}
@media (prefers-color-scheme: dark) {
  .EmailStep form label {
    color: #f0f2f4;
  }
}
.EmailStep form input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 24px;
  transition: border-color 0.2s;
}
.EmailStep form input:focus {
  outline: none;
  border-color: #667eea;
}
.EmailStep form input:invalid {
  border-color: #e74c3c;
}
@media (prefers-color-scheme: dark) {
  .EmailStep form input {
    background: #4b4f4f;
    border-color: rgba(255, 255, 255, 0.2);
    color: #f0f2f4;
  }
  .EmailStep form input:focus {
    border-color: #0082ca;
  }
}
.EmailStep form button {
  width: 100%;
  height: 3em;
  min-width: 150px;
  padding: 0 1em;
  background: #0082ca;
  color: #f0f2f4;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.EmailStep form button:hover:not(:disabled) {
  background: #0092e3;
}
.EmailStep form button:active:not(:disabled) {
  background: #00a3fd;
}
.EmailStep form button:disabled {
  opacity: 0.3333;
  cursor: not-allowed;
}

.VerifyStep {
  width: 100%;
  max-width: 400px;
}
.VerifyStep h2 {
  margin: 0 0 16px 0;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep h2 {
    color: #f0f2f4;
  }
}
.VerifyStep p {
  margin: 0 0 8px 0;
  color: #666;
  line-height: 1.6;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep p {
    color: #d0d2d4;
  }
}
.VerifyStep p.email {
  font-weight: 600;
  color: #667eea;
  margin-bottom: 32px;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep p.email {
    color: #0082ca;
  }
}
.VerifyStep .verification-error {
  background: #fff5f5;
  border: 2px solid #e74c3c;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 24px;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep .verification-error {
    background: #262828;
    border-color: #c0392b;
  }
}
.VerifyStep .verification-error p {
  margin: 0;
  color: #e74c3c;
  font-size: 14px;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep .verification-error p {
    color: #ff6b6b;
  }
}
.VerifyStep form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep form label {
    color: #f0f2f4;
  }
}
.VerifyStep form input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 24px;
  letter-spacing: 8px;
  text-align: center;
  margin-bottom: 24px;
  transition: border-color 0.2s;
  font-family: monospace;
}
.VerifyStep form input:focus {
  outline: none;
  border-color: #667eea;
}
.VerifyStep form input:invalid {
  border-color: #e74c3c;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep form input {
    background: #4b4f4f;
    border-color: rgba(255, 255, 255, 0.2);
    color: #f0f2f4;
  }
  .VerifyStep form input:focus {
    border-color: #0082ca;
  }
}
.VerifyStep form button {
  width: 100%;
  height: 3em;
  min-width: 150px;
  padding: 0 1em;
  background: #0082ca;
  color: #f0f2f4;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 16px;
}
.VerifyStep form button:hover:not(:disabled) {
  background: #0092e3;
}
.VerifyStep form button:active:not(:disabled) {
  background: #00a3fd;
}
.VerifyStep form button:disabled {
  opacity: 0.3333;
  cursor: not-allowed;
}
.VerifyStep form .resend-section {
  text-align: center;
  margin-top: 16px;
}
.VerifyStep form .resend-text {
  color: #666;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep form .resend-text {
    color: #d0d2d4;
  }
}
.VerifyStep form .resend-link {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
}
.VerifyStep form .resend-link:hover {
  text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep form .resend-link {
    color: #0082ca;
  }
}
.VerifyStep form .resend-disabled {
  display: block;
  text-align: center;
  color: #999;
  font-size: 14px;
}
@media (prefers-color-scheme: dark) {
  .VerifyStep form .resend-disabled {
    color: #888;
  }
}

.CompleteStep {
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.CompleteStep .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  font-weight: bold;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .success-icon {
    background: #00aa00;
  }
}
.CompleteStep h2 {
  margin: 0 0 16px 0;
  font-size: 28px;
  color: #333;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep h2 {
    color: #f0f2f4;
  }
}
.CompleteStep p {
  margin: 0 0 16px 0;
  color: #666;
  line-height: 1.6;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep p {
    color: #d0d2d4;
  }
}
.CompleteStep p.email-info {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 6px;
  margin: 24px 0;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep p.email-info {
    background: #4b4f4f;
  }
}
.CompleteStep p.email-info strong {
  color: #667eea;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep p.email-info strong {
    color: #31b6ff;
  }
}
.CompleteStep p.next-steps {
  color: #999;
  font-size: 14px;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep p.next-steps {
    color: #888;
  }
}
.CompleteStep hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 32px 0;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep hr {
    border-top-color: rgba(255, 255, 255, 0.15);
  }
}
.CompleteStep .gift-offer .gift-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.CompleteStep .gift-offer h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  color: #333;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .gift-offer h3 {
    color: #f0f2f4;
  }
}
.CompleteStep .gift-offer p {
  margin: 0 0 24px 0;
  color: #666;
  font-size: 15px;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .gift-offer p {
    color: #d0d2d4;
  }
}
.CompleteStep .gift-offer button {
  display: block;
  margin: 0 auto;
}
.CompleteStep .gift-error {
  background: #fff5f5;
  border: 2px solid #e74c3c;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 24px;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .gift-error {
    background: #262828;
    border-color: #c0392b;
  }
}
.CompleteStep .gift-error p {
  margin: 0;
  color: #e74c3c;
  font-size: 14px;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .gift-error p {
    color: #ff6b6b;
  }
}
.CompleteStep form {
  text-align: left;
}
.CompleteStep form .field-group {
  margin-bottom: 20px;
}
.CompleteStep form .field-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep form .field-group label {
    color: #f0f2f4;
  }
}
.CompleteStep form .field-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
}
.CompleteStep form .field-group select:focus {
  outline: none;
  border-color: #667eea;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep form .field-group select {
    background: #4b4f4f;
    border-color: rgba(255, 255, 255, 0.2);
    color: #f0f2f4;
  }
  .CompleteStep form .field-group select:focus {
    border-color: #0082ca;
  }
}
.CompleteStep form button {
  width: 100%;
  margin-top: 4px;
}
.CompleteStep .gift-confirmation {
  padding: 32px 0;
}
.CompleteStep .gift-confirmation .gift-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  font-weight: bold;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .gift-confirmation .gift-icon {
    background: #00aa00;
  }
}
.CompleteStep .gift-confirmation h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #333;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .gift-confirmation h3 {
    color: #f0f2f4;
  }
}
.CompleteStep .gift-confirmation .important-notice {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  margin-top: 24px;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .gift-confirmation .important-notice {
    background: linear-gradient(135deg, #0082ca 0%, #005a8e 100%);
    box-shadow: 0 4px 12px rgba(0, 130, 202, 0.4);
  }
}
.CompleteStep .gift-confirmation .important-notice strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}
.CompleteStep .gift-confirmation p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}
@media (prefers-color-scheme: dark) {
  .CompleteStep .gift-confirmation p {
    color: #d0d2d4;
  }
}

.Busy {
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 48px;
}
.Busy .spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@media (prefers-color-scheme: dark) {
  .Busy .spinner {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: #0082ca;
  }
}
.Busy p {
  margin: 0;
  color: #666;
  font-size: 16px;
}
@media (prefers-color-scheme: dark) {
  .Busy p {
    color: #d0d2d4;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.Error {
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 32px;
  background: #fff5f5;
  border: 2px solid #e74c3c;
  border-radius: 8px;
}
@media (prefers-color-scheme: dark) {
  .Error {
    background: #262828;
    border-color: #c0392b;
  }
}
.Error .error-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}
.Error p {
  margin: 0 0 24px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
@media (prefers-color-scheme: dark) {
  .Error p {
    color: #f0f2f4;
  }
}
.Error p a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}
.Error p a:hover {
  text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
  .Error p a {
    color: #0082ca;
  }
}
.Error button {
  display: block;
  margin: 0 auto;
  height: 3em;
  min-width: 150px;
  padding: 0 1em;
  background: #0082ca;
  color: #f0f2f4;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.Error button:hover {
  background: #0092e3;
}
.Error button:active {
  background: #00a3fd;
}

.DemoApp {
  display: flex;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: #f5f5f5;
}
@media (prefers-color-scheme: dark) {
  .DemoApp {
    background: #323535;
  }
}
.DemoApp .preview-panel {
  flex: 1;
  min-width: 0;
  background: #0082ca;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.DemoApp .preview-panel .preview-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.DemoApp .preview-panel .preview-image img,
.DemoApp .preview-panel .preview-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.DemoApp .form-panel {
  flex: 0 0 auto;
  width: 600px;
  min-width: 500px;
  background: white;
  display: flex;
  flex-direction: column;
  padding: 60px;
  overflow-x: hidden;
}
@media (prefers-color-scheme: dark) {
  .DemoApp .form-panel {
    background: #323535;
  }
}
.DemoApp .form-panel header {
  margin-bottom: 40px;
  text-align: center;
}
.DemoApp .form-panel header h1 {
  margin: 0 0 8px 0;
  font-size: 32px;
  color: #333;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  .DemoApp .form-panel header h1 {
    color: #f0f2f4;
  }
}
.DemoApp .form-panel header h2 {
  margin: 0;
  font-size: 24px;
  color: #666;
  font-weight: 400;
}
@media (prefers-color-scheme: dark) {
  .DemoApp .form-panel header h2 {
    color: #d0d2d4;
  }
}
.DemoApp .form-panel .content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.DemoApp .form-panel footer {
  margin-top: 40px;
  text-align: center;
  color: #999;
  font-size: 12px;
}
@media (prefers-color-scheme: dark) {
  .DemoApp .form-panel footer {
    color: #888;
  }
}
@media (max-width: 768px) {
  .DemoApp .preview-panel {
    display: none;
  }
  .DemoApp .form-panel {
    width: 100%;
    min-width: 0;
    padding: 40px 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .DemoApp .form-panel {
    width: 500px;
    min-width: 450px;
    padding: 40px 30px;
  }
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  background: #f5f5f5;
}
#favicon_ {
  background-image: url(favicon.png);
}

.Button {
  background-color: #444;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  padding: 0 1em;
  height: 3em;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s;
}
.Button.center {
  justify-content: center;
}
.Button[type="submit"],
.Button.submit {
  background-color: #0082ca;
  color: #f0f2f4;
}
.Button[type="submit"]:hover:not([disabled]),
.Button.submit:hover:not([disabled]) {
  background-color: #0092e3;
}
.Button[type="submit"]:active:not([disabled]),
.Button.submit:active:not([disabled]) {
  background-color: #00a3fd;
}
.Button[disabled] {
  opacity: 0.3333;
  cursor: not-allowed;
}
.Button[type="submit"][disabled],
.Button.submit[disabled] {
  background-color: #0082ca;
  color: #f0f2f4;
  opacity: 0.3333;
}

.Input {
  background-color: #4b4f4f !important;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #f0f2f4 !important;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  padding: 0 0.5em;
  margin: 0.4em 0;
  transition: border-color 0.2s;
}
.Input:not([type="radio"]),
.Input:not([type="checkbox"]) {
  height: 3em;
}
.Input:focus {
  outline: none;
  border-color: #0082ca;
}
.Input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(255, 100, 100, 0.5);
}
.Input:invalid:placeholder-shown {
  border-color: rgba(255, 255, 255, 0.2);
}
.Input::placeholder {
  color: #d0d2d4;
  font-size: 0.75em;
  font-weight: 400;
}


/*# sourceMappingURL=demo.css.map*/