/* MIGRATED TO TAILWIND - Authentication styles
   Now using Tailwind utilities in index.html:
   - .auth-section: flex flex-col items-center gap-5 py-10 px-5
   - .app-title: text-3xl font-light text-btn-british mb-2
   - .sign-in-btn: flex items-center gap-3 bg-white border rounded-lg shadow-sm hover:shadow-md
   - .google-icon: w-5 h-5 flex-shrink-0
   - .access-denied-message: bg-red-50 text-red-700 px-6 py-5 rounded-lg border

.auth-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}

.auth-section.hidden {
  display: none;
}

.app-title {
  font-size: 28px;
  font-weight: 300;
  color: #4A90E2;
  margin-bottom: 10px;
}

.sign-in-btn {
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #dadce0;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.sign-in-btn:hover {
  background-color: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.sign-in-btn:disabled {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
  box-shadow: none;
}

.sign-in-btn:disabled .google-icon {
  opacity: 0.5;
}

.google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.access-denied-message {
  background-color: #FFEBEE;
  color: #C62828;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  max-width: 320px;
  border: 1px solid #FFCDD2;
}

.access-denied-message p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
*/