html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.flex-grow-1 {
  flex: 1 0 auto;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Custom Header Styles */
.custom-header {
  background-color: white;
  border-bottom: 1px solid #E5E7EB;
  padding: 1rem 2rem;
  box-shadow: none;
  margin-bottom: 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1F2937;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-caret {
  color: #22C55E;
  font-size: 0.75rem;
  line-height: 1;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: #1F2937;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color 0.2s;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: #22C55E;
}

.nav-link.active {
  color: #22C55E;
  font-weight: 500;
}

/* Auth Section */
.auth-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  position: relative;
}

.auth-inputs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.auth-input {
  background-color: #D1FAE5;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #1F2937;
  width: 120px;
  outline: none;
}

.auth-input::placeholder {
  color: #059669;
  font-size: 0.875rem;
}

.auth-input:focus {
  background-color: #A7F3D0;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper .auth-input {
  padding-right: 2rem;
}

.password-toggle {
  position: absolute;
  right: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.auth-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-login {
  background-color: #22C55E;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-login:hover {
  background-color: #16A34A;
}

.btn-register {
  background-color: white;
  color: #3B82F6;
  border: 1.5px solid #3B82F6;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-register:hover {
  background-color: #EFF6FF;
}

.forgot-password {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  font-size: 0.75rem;
  color: #3B82F6;
  text-decoration: none;
  white-space: nowrap;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Auth Error/Success Messages */
.auth-error-message {
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.auth-success-message {
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Logged-in User Display */
.auth-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #1F2937;
}

.auth-user-info span {
  font-weight: 500;
}

.btn-logout {
  background-color: #DC2626;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-logout:hover {
  background-color: #B91C1C;
  text-decoration: none;
  color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .auth-section {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .custom-header {
    padding: 1rem;
  }
  
  .header-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .logo-section {
    justify-content: center;
  }
  
  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .auth-section {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }
  
  .auth-inputs {
    flex-direction: column;
    width: 100%;
  }
  
  .auth-input {
    width: 100%;
  }
  
  .auth-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-login,
  .btn-register {
    width: 100%;
  }
  
  .forgot-password {
    position: static;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Footer Styles */
.custom-footer {
  background-color: #F3F4F6;
  padding: 0;
  margin-top: auto;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Footer Top Section */
.footer-top {
  padding: 3rem 0;
}

.footer-top .footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

/* Company Info Section */
.footer-company {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #22C55E;
}

.footer-slogan {
  font-size: 0.875rem;
  color: #4B5563;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slogan-icon {
  color: #22C55E;
  font-size: 0.75rem;
}

.slogan-company {
  color: #22C55E;
  font-weight: 600;
}

.footer-description {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-link-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 1rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-list li a {
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link-list li a:hover {
  color: #22C55E;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background-color: #D1D5DB;
  width: 100%;
}

/* Office Locations Section */
.footer-offices {
  padding: 2.5rem 0;
}

.footer-offices .footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.office-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.office-flag {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.office-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 0.5rem 0;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
}

.office-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Copyright Section */
.footer-copyright {
  background-color: #F3F4F6;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #E5E7EB;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.875rem;
  color: #6B7280;
}

/* Floating Chat Icon */
.chat-icon {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background-color: #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1000;
}

.chat-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.chat-icon svg {
  width: 24px;
  height: 24px;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-top .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-links:last-child {
    grid-column: 1 / -1;
  }
  
  .footer-offices .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-top {
    padding: 2rem 0;
  }
  
  .footer-top .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-company {
    max-width: 100%;
  }
  
  .footer-offices {
    padding: 2rem 0;
  }
  
  .footer-offices .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .chat-icon {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }
  
  .chat-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Contact Page Styles */
.contact-page {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
  padding-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #A7F3D0;
  border-radius: 2px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Information Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 0.5rem 0;
}

.contact-section {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item strong {
  color: #1F2937;
  font-weight: 600;
}

.flag-icon {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

.landline-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Google Map Section */
.contact-map {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-map {
    height: 400px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 1rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-map {
    height: 300px;
  }
  
  .contact-section {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
  }
}

/* Blog Page Styles */
.blog-page {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: white;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 3rem 0;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.blog-card-top {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.blog-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-brand-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1F2937;
}

.blog-card-title-top {
  font-size: 1.25rem;
  font-weight: 700;
  color: #22C55E;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.highlight-text {
  background-color: #D1FAE5;
  padding: 0.125rem 0.25rem;
  border-radius: 4px;
}

.blog-url {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin: 0;
}

.blog-image {
  width: 100%;
  height: 250px;
  background-color: white;
  overflow: hidden;
}

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-bottom {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-category span {
  font-size: 0.875rem;
  color: #1F2937;
  font-weight: 500;
}

.blog-card-title-bottom {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.blog-description {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Responsive Design for Blog Page */
@media (max-width: 1024px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-page {
    padding: 2rem 1rem;
  }
  
  .blog-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .blog-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-image {
    height: 200px;
  }
}

/* Pricing Page Styles */
.pricing-page {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: white;
}

/* Header Section */
.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.highlight-green {
  color: #22C55E;
}

.pricing-subtitle {
  font-size: 1.125rem;
  color: #4B5563;
  margin: 0 0 1.5rem 0;
}

.start-free-link {
  color: #3B82F6;
  text-decoration: none;
  font-weight: 500;
}

.start-free-link:hover {
  text-decoration: underline;
}

.btn-get-started {
  background-color: #3B82F6;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-get-started:hover {
  background-color: #2563EB;
}

/* Pricing Cards Section */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background-color: white;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #22C55E;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transform: rotate(45deg) translate(30%, -50%);
  transform-origin: center;
  width: 120px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 1rem 0;
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
}

.price-period {
  font-size: 1rem;
  color: #6B7280;
  margin-left: 0.25rem;
}

.pricing-user-count {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0.5rem 0 0 0;
}

.billing-dropdown {
  margin-top: 1rem;
}

.billing-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #1F2937;
  background-color: white;
  cursor: pointer;
}

.billing-select:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Pricing Buttons */
.btn-pricing {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}

.btn-pricing-primary {
  background-color: #3B82F6;
  color: white;
  border: none;
}

.btn-pricing-primary:hover {
  background-color: #2563EB;
}

.btn-pricing-outline {
  background-color: white;
  color: #3B82F6;
  border: 2px solid #3B82F6;
}

.btn-pricing-outline:hover {
  background-color: #EFF6FF;
}

/* Pricing Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  font-size: 0.875rem;
  color: #4B5563;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.checkmark {
  color: #22C55E;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Bottom CTA Section */
.pricing-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: #F9FAFB;
  border-radius: 8px;
  margin-top: 3rem;
}

.cta-text {
  font-size: 1.125rem;
  color: #1F2937;
  margin: 0;
  font-weight: 500;
}

.btn-contact-us {
  background-color: #3B82F6;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.btn-contact-us:hover {
  background-color: #2563EB;
}

/* Responsive Design for Pricing Page */
@media (max-width: 1200px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-page {
    padding: 2rem 1rem;
  }
  
  .pricing-main-title {
    font-size: 2rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-cta {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .btn-contact-us {
    width: 100%;
  }
  
  .price-amount {
    font-size: 2rem;
  }
}

/* Features Page Styles */
.features-page {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: white;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  text-align: center;
  margin: 0 0 3rem 0;
  line-height: 1.3;
}

.features-title-light {
  color: #6B7280;
  font-weight: 600;
}

.features-title-dark {
  color: #1F2937;
  font-weight: 700;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #22C55E;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #22C55E;
  margin: 0;
  line-height: 1.4;
}

.feature-description {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Features Page */
@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-column {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .features-page {
    padding: 2rem 1rem;
  }
  
  .features-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .features-column {
    gap: 1.5rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-description {
    font-size: 0.875rem;
  }
}

/* Home Page Styles */
.home-page {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.highlight-green {
  color: #22C55E;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4B5563;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: #3B82F6;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s;
  display: inline-block;
}

.btn-hero-primary:hover {
  background-color: #2563EB;
}

.btn-hero-secondary {
  background-color: white;
  color: #3B82F6;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #3B82F6;
  transition: all 0.2s;
  display: inline-block;
}

.btn-hero-secondary:hover {
  background-color: #EFF6FF;
}

/* Features Preview Section */
.features-preview {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.section-title-light {
  color: #6B7280;
  font-weight: 600;
}

.section-title-dark {
  color: #1F2937;
  font-weight: 700;
}

.section-description {
  font-size: 1.125rem;
  color: #6B7280;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-preview-card {
  background-color: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-preview-icon {
  width: 64px;
  height: 64px;
  background-color: #22C55E;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-preview-icon svg {
  width: 24px;
  height: 24px;
}

.feature-preview-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 0.75rem 0;
}

.feature-preview-text {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.features-cta {
  text-align: center;
}

.btn-view-all-features {
  color: #22C55E;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.2s;
}

.btn-view-all-features:hover {
  color: #16A34A;
}

/* Pricing Preview Section */
.pricing-preview {
  padding: 5rem 2rem;
  background-color: #F9FAFB;
}

.pricing-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-preview-card {
  background-color: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-preview-card.featured {
  border: 2px solid #22C55E;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #22C55E;
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-preview-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 1rem 0;
}

.pricing-preview-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 0.5rem 0;
}

.pricing-preview-price span {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 400;
}

.pricing-preview-desc {
  font-size: 0.9375rem;
  color: #6B7280;
  margin: 0 0 1.5rem 0;
}

.btn-pricing-preview {
  display: inline-block;
  background-color: #3B82F6;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background-color 0.2s;
  width: 100%;
}

.btn-pricing-preview:hover {
  background-color: #2563EB;
}

.pricing-preview-card.featured .btn-pricing-preview {
  background-color: #22C55E;
}

.pricing-preview-card.featured .btn-pricing-preview:hover {
  background-color: #16A34A;
}

/* Home CTA Section */
.home-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.5rem 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background-color: white;
  color: #3B82F6;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
  background-color: transparent;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid white;
  transition: background-color 0.2s;
  display: inline-block;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Home Page */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-preview-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-preview-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .features-preview,
  .pricing-preview,
  .home-cta {
    padding: 3rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-preview-cards {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Auth Pages (Login/Register) Styles */
.auth-page {
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-container {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo Section */
.auth-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.auth-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
}

/* Auth Content */
.auth-content {
  width: 100%;
  text-align: center;
}

.auth-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 0.5rem 0;
}

.auth-subheading {
  font-size: 0.9375rem;
  color: #4B5563;
  margin: 0 0 2rem 0;
}

.auth-link {
  color: #3B82F6;
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

/* Form Styles */
.auth-form {
  width: 100%;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  color: #1F2937;
  background-color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper .form-input {
  padding-right: 2.5rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: none;
  border: none;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

/* Submit Button */
.btn-auth-submit {
  width: 100%;
  background-color: #22C55E;
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 0.5rem;
}

.btn-auth-submit:hover {
  background-color: #16A34A;
}

/* Footer */
.auth-footer {
  margin-top: 3rem;
  text-align: center;
  width: 100%;
}

.auth-copyright {
  font-size: 0.875rem;
  color: #4B5563;
  margin: 0 0 1rem 0;
}

.auth-copyright-brand {
  color: #2563EB;
  font-weight: 600;
}

.auth-footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.auth-footer-link {
  color: #3B82F6;
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}

.auth-footer-link:hover {
  color: #2563EB;
  text-decoration: underline;
}

.auth-footer-link svg {
  width: 12px;
  height: 12px;
}

/* Update Register Button in Header */
.btn-register {
  background-color: white;
  color: #3B82F6;
  border: 1.5px solid #3B82F6;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-register:hover {
  background-color: #EFF6FF;
  text-decoration: none;
  color: #3B82F6;
}

/* Reset Password Specific Styles */
.reset-password-heading {
  color: #22C55E !important;
}

/* reCAPTCHA Widget Styles */
.recaptcha-container {
  margin: 1.5rem 0;
}

.recaptcha-widget {
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  background-color: #F9FAFB;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.recaptcha-checkbox-section {
  flex: 1;
}

.recaptcha-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.recaptcha-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4285F4;
}

.recaptcha-checkbox label {
  font-size: 0.875rem;
  color: #1F2937;
  cursor: pointer;
  margin: 0;
}

.recaptcha-terms {
  margin-top: 0.5rem;
}

.recaptcha-terms-text {
  font-size: 0.75rem;
  color: #6B7280;
  margin: 0 0 0.25rem 0;
}

.recaptcha-action-link {
  font-size: 0.75rem;
  color: #3B82F6;
  text-decoration: none;
}

.recaptcha-action-link:hover {
  text-decoration: underline;
}

.recaptcha-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 1px solid #E5E7EB;
}

.recaptcha-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.recaptcha-logo svg {
  width: 24px;
  height: 24px;
}

.recaptcha-brand {
  font-size: 0.75rem;
  color: #6B7280;
  margin: 0;
  font-weight: 500;
}

.recaptcha-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
}

.recaptcha-link {
  color: #3B82F6;
  text-decoration: none;
}

.recaptcha-link:hover {
  text-decoration: underline;
}

.recaptcha-separator {
  color: #6B7280;
}

/* Auth Navigation Links */
.auth-navigation {
  margin-top: 2rem;
  text-align: center;
}

.auth-nav-link {
  color: #3B82F6;
  text-decoration: none;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.auth-nav-link:hover {
  color: #2563EB;
  text-decoration: underline;
}

.auth-nav-text {
  font-size: 0.9375rem;
  color: #1F2937;
  margin: 1rem 0 0.5rem 0;
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
  .auth-page {
    padding: 1rem;
  }
  
  .auth-heading {
    font-size: 1.75rem;
  }
  
  .auth-footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .recaptcha-widget {
    flex-direction: column;
    gap: 1rem;
  }
  
  .recaptcha-logo-section {
    border-left: none;
    border-top: 1px solid #E5E7EB;
    padding-left: 0;
    padding-top: 1rem;
    width: 100%;
  }
}

/* Admin Login Page Styles */
.admin-login-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* =============================
   Brand Theme Overrides (Red)
   ============================= */
:root {
  --brand: #d32f2f;
  --brand-dark: #b71c1c;
  --brand-soft: #fde8e8;
  --brand-contrast: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #ffffff;
}

/* Header */
.nav-link:hover,
.nav-link.active {
  color: var(--brand);
}

.logo-text {
  color: var(--ink);
}

/* Header auth inputs and buttons */
.auth-input {
  background-color: var(--brand-soft);
  color: var(--ink);
}
.auth-input::placeholder {
  color: var(--brand-dark);
}
.auth-input:focus {
  background-color: #fbd2d2;
}
.btn-login {
  background-color: var(--brand);
}
.btn-login:hover {
  background-color: var(--brand-dark);
}
.btn-register {
  color: var(--brand);
  border-color: var(--brand);
}
.btn-register:hover {
  background-color: #fff5f5;
  color: var(--brand);
}
.forgot-password {
  color: var(--brand);
}
.forgot-password:hover {
  text-decoration: underline;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}
.hero-title {
  color: var(--ink);
}
.highlight-green {
  color: var(--brand);
}
.btn-hero-primary {
  background-color: var(--brand);
  color: var(--brand-contrast);
}
.btn-hero-primary:hover {
  background-color: var(--brand-dark);
}
.btn-hero-secondary {
  color: var(--brand);
  border-color: var(--brand);
}
.btn-hero-secondary:hover {
  background-color: #fff5f5;
}

/* Features preview */
.feature-preview-icon {
  background-color: var(--brand);
}
.btn-view-all-features {
  color: var(--brand);
}
.btn-view-all-features:hover {
  color: var(--brand-dark);
}

/* Pricing preview */
.pricing-preview-card.featured {
  border: 2px solid var(--brand);
}
.popular-badge {
  background-color: var(--brand);
}
.pricing-preview-card.featured .btn-pricing-preview {
  background-color: var(--brand);
}
.pricing-preview-card.featured .btn-pricing-preview:hover {
  background-color: var(--brand-dark);
}
.btn-pricing-preview {
  background-color: var(--brand);
}
.btn-pricing-preview:hover {
  background-color: var(--brand-dark);
}

/* CTA section */
.home-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}
.btn-cta-primary {
  color: var(--brand);
}
.btn-cta-secondary {
  border-color: var(--brand-contrast);
  color: var(--brand-contrast);
}

/* Footer links and accents */
.footer-logo-text {
  color: var(--brand);
}
.footer-link-list li a:hover {
  color: var(--brand);
}
.chat-icon {
  background-color: var(--brand);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}
.chat-icon:hover {
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
}

/* Feature and section headings */
.feature-title,
.blog-card-title-top,
.highlight-text {
  color: var(--brand);
}
.feature-icon {
  background-color: var(--brand);
}

.admin-login-container {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 1;
}

.admin-login-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

/* Logo Section */
.admin-login-logo {
  text-align: center;
  margin-bottom: 2.5rem;
}

.admin-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.admin-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 0.25rem 0;
}

.admin-logo-subtitle {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
  font-weight: 500;
}

/* Form Section */
.admin-login-form {
  width: 100%;
}

.admin-login-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.admin-login-subtitle {
  font-size: 0.9375rem;
  color: #6B7280;
  margin: 0 0 2rem 0;
  text-align: center;
}

/* Alert */
.admin-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.admin-alert-error {
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

.admin-alert svg {
  flex-shrink: 0;
}

/* Form Groups */
.admin-form {
  width: 100%;
}

.admin-form-group {
  margin-bottom: 1.5rem;
}

.admin-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.admin-form-label svg {
  width: 18px;
  height: 18px;
}

.admin-form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: #1F2937;
  background-color: white;
  transition: all 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.admin-form-input:focus {
  outline: none;
  border-color: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.admin-form-input:not(:disabled):not([readonly]) {
  cursor: text;
}

.admin-form-input::placeholder {
  color: #9CA3AF;
}

/* Password Wrapper */
.admin-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-password-wrapper .admin-form-input {
  padding-right: 3rem;
}

.admin-password-toggle {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: color 0.2s;
}

.admin-password-toggle:hover {
  color: #374151;
}

/* Form Options */
.admin-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #4B5563;
}

.admin-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #22C55E;
}

.admin-forgot-link {
  color: #3B82F6;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.admin-forgot-link:hover {
  color: #2563EB;
  text-decoration: underline;
}

/* Submit Button */
.admin-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.admin-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.admin-submit-btn:active {
  transform: translateY(0);
}

/* Credentials Info */
.admin-credentials-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

.admin-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #166534;
}

.admin-info-box svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.admin-info-box strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.admin-info-box p {
  margin: 0;
  line-height: 1.5;
}

.admin-info-box code {
  background-color: #D1FAE5;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #065F46;
}

/* Responsive Design for Admin Login */
@media (max-width: 768px) {
  .admin-login-page {
    padding: 1rem;
  }
  
  .admin-login-card {
    padding: 2rem 1.5rem;
  }
  
  .admin-login-title {
    font-size: 1.5rem;
  }
  
  .admin-logo-text {
    font-size: 1.75rem;
  }
}