* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #1a56db;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.disabled {
  pointer-events: none;
  cursor: default;
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 40px;
}
.top-bar {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.go-back {
  font-size: 15px;
  font-weight: 700;
  color: #1a56db;
}
.lang-select {
  position: relative;
}
.lang-select select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #000;
  border-radius: 4px;
  background: #fff;
  padding: 8px 32px 8px 12px;
  font-size: 16px;
  color: #1a1a1a;
  cursor: pointer;
  min-width: 160px;
}
.lang-select::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.card {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.logo {
  text-align: center;
  margin-bottom: 8px;
}
.logo-line {
  color: #06c755;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.5px;
  line-height: 1;
}
.logo-title {
  font-size: 38px;
  font-weight: 800;
  margin-top: 6px;
  line-height: 1.1;
}
.subtitle {
  text-align: center;
  font-size: 14px;
  color: #000;
  margin: 30px 0 30px;
}
.btn {
  display: block;
  width: 100%;
  padding: 13px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  margin-bottom: 16px;
  transition: opacity 0.15s ease;
  font-family: inherit;
}
.btn:hover {
  opacity: 0.9;
}
.btn-line {
  background: #06c755;
  color: #fff;
}
.btn-business {
  background: #fff;
  color: #1a56db;
  border-color: #1a56db;
}
.btn-yahoo {
  background: #1a3fbf;
  color: #fff;
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #333;
  font-size: 13px;
  margin: 14px 0 14px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d1d5db;
}
.divider span {
  padding: 0 12px;
}
.otp-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9ced6;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  font-family: inherit;
  text-align: center;
  color: #1a1a1a;
  background: #fff;
}
.otp-input::placeholder {
  color: #9aa1ac;
}
.otp-input:focus {
  border-color: #1a56db;
}
.otp-note {
  font-size: 12px;
  color: #444;
  line-height: 1.5;
  margin: 10px 0 10px;
}
.link-block {
  display: block;
  font-size: 13px;
  color: #1a56db;
  font-weight: 600;
  margin-bottom: 4px;
}
.separator {
  height: 1px;
  background: #d1d5db;
  margin: 20px 0 20px;
}
.center-links {
  text-align: center;
}
.center-links a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #1a56db;
}
.center-links .create {
  font-weight: 700;
}
.footer {
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  font-size: 12px;
  color: #444;
}
.footer-links a {
  color: #1a56db;
  margin-left: 10px;
}
