* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #111827;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 430px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 32px;
  background: #fff;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.icon {
  font-size: 34px;
  line-height: 1;
}

h1 {
  margin: 0;
  font-size: 26px;
}

.domain {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}

h2 {
  font-size: 22px;
  margin: 0 0 20px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

input[type="email"] {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  border-radius: 7px;
  font-size: 15px;
  margin-bottom: 18px;
}

button {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 7px;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

button:hover { background: #1d4ed8; }

.note {
  margin-top: 18px;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}
