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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.header-logo {
  height: 32px;
}

.cancel-btn {
  background: none;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.cancel-btn:hover {
  background: #f5f5f5;
}

.main {
  display: flex;
  justify-content: center;
  padding: 48px 24px;
}

.card {
  width: 100%;
  max-width: 400px;
}

h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.mobile-link {
  color: #0e9e6e;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 28px;
}

.mobile-link:hover {
  text-decoration: underline;
}

.form-section {
  margin-bottom: 20px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.label-row label {
  font-size: 14px;
  font-weight: 700;
}

.help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  font-size: 12px;
  color: #888;
  cursor: pointer;
}

.email-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
}

.email-input:focus {
  border-color: #0e9e6e;
}

.email-input::placeholder {
  color: #bbb;
}

.continue-btn {
  width: 100%;
  padding: 12px;
  background: #0e9e6e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.continue-btn:hover {
  background: #0c8a5f;
}

.divider-text {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin: 20px 0;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 10px;
}

.social-btn:hover {
  background: #f9f9f9;
}

.social-icon {
  flex-shrink: 0;
}

.privacy-text {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 28px;
}

.privacy-text a {
  color: #0e9e6e;
  text-decoration: underline;
}

.create-account {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

.new-here {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.create-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.create-link:hover {
  background: #f9f9f9;
}

.create-link .arrow {
  font-size: 20px;
  color: #999;
}
