
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.form-card {
  background: white;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  text-align: center;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-group {
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
}

.input-group input:focus {
  border-color: #667eea;
}

button[type="submit"] {
  margin-top: 6px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background: #667eea;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #5568d3;
}

.form-footer {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
}

.form-footer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

.motive-footer {
  margin-top: 10px;
  font-size: 13px;
}

.motive-footer a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
}

.motive-footer a:hover {
  text-decoration: underline;
}