body {
  background: linear-gradient(180deg, #1e8bff 0%, #69b6ff 40%, #ffffff 65%);
  min-height: 100vh;
}

.page {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}

.form {
  width: 100%;
}

.input-row {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.input-row input {
  width: 100%;
  border: none;
  font-size: 16px;
  outline: none;
  padding: 8px 0;
}

.input-row-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-btn {
  background: none;
  border: none;
  color: #1e8bff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.link-btn:disabled {
  color: #ccc;
}

.primary-btn {
  width: 100%;
  background: #1e8bff;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 91, 255, 0.3);
}

.helper {
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid #f5f5f5;
}

.helper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}
