/* doctor-login.css */
:root {
  --primary: #1e3a8a;       /* Professional Deep Blue */
  --secondary: #0d9488;     /* Healthcare Teal */
  --accent: #3b82f6;        /* Light Blue */
  --error: #ef4444;         /* Error Red */
  --success: #10b981;       /* Success Green */
  --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: var(--bg-gradient);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

h1 {
  color: var(--primary);
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.5rem;
}

/* Inputs & Select */
select, input {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.25rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box; /* Padding handling */
}

select:focus, input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Submit Button */
.btn.primary-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, background 0.3s;
}

.btn.primary-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.btn.primary-btn:active {
  transform: translateY(0);
}

/* Messages (JS Dynamic logic) */
.error-message, .success-message {
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 1rem;
  display: none; /* JS control chestundi */
}

.error-message {
  background-color: #fee2e2;
  color: var(--error);
  border: 1px solid #fecaca;
}

.success-message {
  background-color: #d1fae5;
  color: var(--success);
  border: 1px solid #a7f3d0;
}

/* Forgot Password Link */
.forgot-password-container {
  text-align: right;
  margin-bottom: 1.5rem;
}

.forgot-password-link {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}

.forgot-password-link:hover {
  text-decoration: underline;
}

/* Bottom Navigation Row */
.btn-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 400px;
}

.btn-row .btn {
  flex: 1;
  text-decoration: none;
  text-align: center;
  padding: 0.75rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-row .primary-btn {
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-row .secondary-btn {
  background: white;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
}

.btn-row .btn:hover {
  background: #f8fafc;
}