:root {
  --brand: #FF6701;
  --bg: #f9fafb;
  --error: #ef4444;
}

body {
  font-family: -apple-system, sans-serif;
  background: var(--bg);
  display: flex;
  justify-content: center;
  padding: 20px;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

h2 {
  color: var(--brand);
  text-align: center;
  margin-bottom: 1.5rem;
}

.field {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #4b5563;
}

input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
}

input:focus {
  border-color: var(--brand);
  outline: none;
}

.phone-wrap {
  display: flex;
}

.prefix {
  padding: 12px;
  background: #eee;
  border-radius: 10px 0 0 10px;
  border: 2px solid #e5e7eb;
  border-right: none;
}

.phone-wrap input {
  border-radius: 0 10px 10px 0;
}

button {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
}

.error-text {
  color: var(--error);
  font-size: 0.8rem;
  display: none;
  margin-top: 4px;
}

.footer {
    margin-top: auto; /* pushes footer to bottom */
    text-align: center;
    font-size: 0.9rem;
    color: #4b5563;
    padding: 12px 0;
}

.footer a {
    color: #FF6701; /* your orange brand color */
    text-decoration: none;
    font-weight: bold;
}

.footer div + div {
    margin-top: 8px; /* spacing between lines */
}