/* Doctor Registration Form - Karkinium Theme */



    body {
      margin: 0;
      font-family: Arial, sans-serif;
      text-align: center;
      background-color: #f9f9f9;
    }

/* Section */
.doctor-section {
  background: #fff;
  padding: 60px 20px;
}

.doctor-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.doctor-container h2 {
  color: #1e293b;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
}

/* Row fields */
.form-row {
  display: flex;
  gap: 15px;
}
.form-row .form-group {
  flex: 1;
}

/* Checkboxes */
.checkbox-group label {
  display: inline-block;
  margin-right: 15px;
  color: #475569;
}

/* Submit Button */
.submit-btn {
  background: #38bdf8;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #0ea5e9;
}

/* Success Message */
.success-msg {
  background: #d1fae5;
  color: #065f46;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  margin: 15px auto;
  max-width: 700px;
  font-weight: 600;
}

/* Login link */
.login-link {
  text-align: center;
  margin-top: 15px;
  color: #475569;
}
.login-link a {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 600;
}
.login-link a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .doctor-container {
    padding: 25px;
  }
  .form-row {
    flex-direction: column;
  }
}
