html, body {
  margin: 0;
  height: 100%;
  background: #F7F9FB;
}

* { box-sizing: border-box; }

.wrap {
  font-family: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F9FB;
  padding: 40px 20px;
}

.card {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.logo {
  width: 148px;
  height: auto;
}

.status-line {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #14181D;
}

.body-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #14181D;
  text-wrap: pretty;
}

.body-text p { margin: 0; }

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-row {
  display: flex;
}

.email-input {
  flex: 1;
  min-width: 0;
  border: 1px solid #D8DEE6;
  border-right: none;
  background: #F7F9FB;
  padding: 11px 14px;
  font-size: 14px;
  color: #14181D;
  font-family: inherit;
  outline: none;
}

.email-input::placeholder { color: rgba(20,24,29,0.4); }

.email-input:focus {
  border-color: #2F5C8A;
}

.email-input.invalid {
  border-color: #834631;
}

.submit-btn {
  background: #2F5C8A;
  color: #F7F9FB;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.submit-btn:hover { background: #14181D; }
.submit-btn:disabled { opacity: 0.6; cursor: default; }

.error-msg {
  font-size: 12.5px;
  color: #834631;
}

.confirmation {
  border: 1px solid #D8DEE6;
  background: #EDF1F5;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #14181D;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #5C6672;
  text-wrap: pretty;
}

.lang-toggle {
  font-size: 13px;
  font-weight: 500;
  color: #2F5C8A;
  text-decoration: none;
  align-self: flex-start;
}

.lang-toggle:hover {
  color: #14181D;
  text-decoration: underline;
  text-underline-offset: 3px;
}
