.acct-type-btn {
  background: white;
  border: 2px solid #c4cdd6;
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
  min-height: 112px;
  box-sizing: border-box;
}
.acct-type-btn:hover {
  border-color: rgba(0, 79, 77, 0.35);
  background: #f0fdf4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.acct-type-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 79, 77, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #004f4d;
  margin-bottom: 0.5rem;
}
.acct-type-label {
  font-weight: 700;
  color: #1f2937;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.acct-type-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}
/* Tighter spacing overrides */
#accountTypeModal .auth-modal-body > p:first-child {
  margin-bottom: 0.7rem !important;
}
#accountTypeModal .auth-modal-body > div:nth-child(2) {
  margin-bottom: 0.9rem !important;
}
/* Softer close button */
#accountTypeModal .auth-modal-close {
  top: 18px;
  opacity: 0.7;
}

/* Account Type Button Styles */
.acct-type-btn {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 0.75rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}
.acct-type-btn:hover {
  border-color: #004f4d;
  background: #f0fdf4;
}
.acct-type-icon {
  font-size: 1.4rem;
  color: #004f4d;
  margin-bottom: 0.4rem;
}
.acct-type-label {
  font-weight: 700;
  color: #1f2937;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.acct-type-desc {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Login Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal-header h2 {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: #1e293b;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  pointer-events: none;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #64748b;
  font-weight: bold;
  line-height: 1;
}

.close:hover {
  color: #1e293b;
}

.modal-body {
  padding: 2rem;
}

.login-subtitle {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.login-form .form-group {
  margin-bottom: 1.5rem;
}

.login-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #334155;
  font-size: 0.95rem;
}

.login-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s;
  background: white;
  color: #1e293b;
  box-sizing: border-box;
}

.login-form .form-input:focus {
  outline: none;
  border-color: #004f4d;
  box-shadow: 0 0 0 3px rgba(0, 79, 77, 0.1);
}

.login-form .form-input::placeholder {
  color: #94a3b8;
}

.error-message {
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #dc2626;
  border-radius: 8px;
  font-weight: 500;
}

/* ── Quick contact buttons ── */
.dev-quick-contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  color: white;
}
.dev-quick-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── Share popup ── */
.dev-share-popup {
  position: fixed;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  width: 220px;
  z-index: 9999;
  padding: 10px 0 6px;
  border: 1px solid #e5e7eb;
}
.dev-share-popup-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 16px 8px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 4px;
}
.dev-share-option {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 16px;
  font-size: 0.9rem;
  color: #2e2e2e;
  text-align: left;
  transition: background 0.12s;
}
.dev-share-option:hover {
  background: #f3f4f6;
}
.dev-share-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.dev-share-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #004f4d;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.25s,
    transform 0.25s;
  pointer-events: none;
}
.dev-share-toast.visible {
  opacity: 1;
  transform: translateY(0);
}
