/* Registration Page Specific Styles */

body {
  padding: 40px 20px;
  min-height: 100vh;
}

.register-container {
  max-width: 700px;
  margin: 0 auto;
}

.register-header {
  text-align: center;
  margin-bottom: 32px;
}

.register-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.register-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.register-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
}

.register-footer a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}

.register-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}