body {
  background: #f5f7fa;
  font-family: "Poppins", sans-serif;
}

.signup-page {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}


.signup-card {
  background: #fff;
  width: 100%;
  max-width: 520px;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}


.logo-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  width: 80px;
}

.logo-wrap h2 {
  margin-top: 10px;
  font-size: 22px;
}

.logo-wrap p {
  font-size: 13px;
  color: #6b7280;
}


.section-title {
  background: #6b7a90;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  margin: 20px 0 10px;
  text-align: center;
}


.form-group {
  margin-bottom: 15px;
}

label {
  font-size: 13px;
  color: #374151;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  margin-top: 5px;
}

textarea {
  min-height: 80px;
}

.row {
  display: flex;
  gap: 10px;
}

.row input {
  flex: 1;
}


.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #1f3b63;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
}

.login-link {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

.login-link a {
  color: #2563eb;
} 






