avo eot/* -------------------
   Global styles
------------------- */
html {
    height: 100%;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif ;
    color: #34495E;
    background-color: #fff;
    margin: 0;
    padding-top: 80px; /* match navbar height */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 60%; /* reduce width by 40% on both sides */
}

a {
    text-decoration: none;
}

/* -------------------
   Navbar
------------------- */
.navbar .navbar-brand img.ff-logo {
    max-height: 48px;
    width: auto;
}

.navbar .nav-link[data-bs-toggle="tooltip"] {
  position: relative;  /* ensures tooltip aligns properly */
  cursor: pointer;
}

.tooltip-inner {
  background-color: #2f8f83; /* green brand colour */
  color: #fff;
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
}
.tooltip-arrow::before {
  border-top-color: #2f8f83; /* match the arrow to tooltip */
}

.navbar-nav .nav-link {
    color: #34495E !important;
    margin: 0 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    color: #1ABC9C !important;
}

/* -------------------
   Buttons
------------------- */
.btn.ff-cta-primary {
    background-color: #1ABC9C;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.btn.ff-cta-primary:hover {
    background-color: #16a085;
    color: #fff;
}

.btn.ff-cta-ghost {
    background-color: transparent;
    color: #1ABC9C;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #1ABC9C;
    border-radius: 6px;
    padding: 0.45rem 1rem;
    transition: all 0.2s ease;
}

.btn.ff-cta-ghost:hover {
    background-color: #1ABC9C;
    color: #fff;
}

.btn.ff-cta-ghost-hero {
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #fff;
    border-radius: 6px;
    padding: 0.45rem 1rem;
    transition: all 0.2s ease;
}

.btn.ff-cta-ghost-hero:hover {
    background-color: #fff;
    color: #1ABC9C;
}

/* -------------------
   Sections
------------------- */
.section-welcome, .section-how, .section-capabilities, .section-pricing {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-welcome {
    background-color: #fff;
}

.section-capabilities {
    background-color: #ECF0F1;
}

.section-pricing {
    background-color: #fff;
}

/* -------------------
   Cards
------------------- */
.ff-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 2rem;
}

.ff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Capabilities card images */
.ff-card img {
    max-width: 64px;
    height: auto;
}

/* -------------------
   Pricing cards
------------------- */
.ff-card-pricing {
    border: 2px solid #ECF0F1;
    transition: all 0.3s ease;
}

.ff-card-pricing.featured {
    border: 2px solid #1ABC9C;
    background-color: #F0F9F8;
}

.ff-card-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.ff-card-pricing .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F3A3D;
}


/* -------------------
   Pricing page styles
------------------- */

.pricing-page {
  background-color: #fff;
}

.pricing-header {
  background-color: #fff;
}

.pricing-tiers {
  background-color: #fff;
}

.pricing-tiers .container {
  max-width: 900px; /* Narrower than global container */
}

.pricing-tiers .pricing-card {
  background-color: #F0F9F8 !important;
}

/* Pricing toggle styles */
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.toggle-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #34495E;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #1ABC9C;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.save-text {
  font-size: 0.7rem;
.save-text {
  color: #6c757d;
  background-color: #f0f0f0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
  font-size: 0.8rem;
  font-weight: 600;
  color: #6c757d;
  background-color: #f0f0f0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.save-text.active {
  color: #1ABC9C;
  background-color: #F0F9F8;
}

.pricing-card {
  background-color: #fff; /* slightly darker than page background */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.pricing-card.featured {
  border: 2px solid #1ABC9C;
  position: relative;
}

.pricing-card.featured::after {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1ABC9C;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1F3A3D;
  text-align: left;
}

.pricing-card-description {
  font-size: 0.65rem;
  color: #6c757d;
  margin-bottom: 1rem;
  text-align: left;
}

.pricing-divider {
  border: 0;
  border-top: 1px solid #1ABC9C;
  margin: 1rem 0;
}

.pricing-card-price {
  margin-bottom: 0.25rem;
  text-align: left;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F3A3D;
}

.price-period {
  font-size: 0.8rem;
  font-weight: 400;
  color: #6c757d;
}

.pricing-small-info {
  font-size: 0.6rem;
  color: #6c757d;
  margin-bottom: 1rem;
  text-align: left;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.25rem 0;
  font-size: 0.65rem;
  text-align: left;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  background-color: #1ABC9C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: bold;
}

.pricing-features strong {
  color: #495057;
}

.pricing-card .btn {
  margin-top: auto;
}

/* -------------------
   Pricing features styles
------------------- */

.table thead th {
  font-weight: 600;
  font-size: 0.9rem;
  color: #212529;
  border-bottom-width: 2px;
}

/* Pricing comparison table font size */
.table tbody th,
.table tbody td {
  font-size: 0.9rem;   /* try 0.85–0.95rem */
}

/* Feature row styling */
.feature-name {
  font-weight: 500;        /* lighter than header */
  font-size: 0.95rem;      /* slightly smaller */
  color: #495057;          /* Bootstrap muted-ish */
  background-color: transparent;
}

/* -------------------
   Footer
------------------- */
footer {
    padding: 2rem 0;
    background-color: #f8f9fa;
    color: #6c757d;
}

footer p {
    margin: 0;
}

.footer-link {
    font-size: 0.85rem;
    font-weight: bold;
    color: #34495E !important;
    text-decoration: none;
}

.footer-link:hover {
    color: #1ABC9C !important;
}

.copyright-text {
    font-size: 0.85rem;
    color: #000;
}

/* -------------------
   Utility
------------------- */
.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }

.mt-4 { margin-top: 1.5rem !important; }

.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-4 { padding: 1.5rem !important; }

.row-cols-md-3 > .col {
    margin-bottom: 1.5rem;
}


/* -------------------
   Process page styles
------------------- */

.process-tiers {
  background-color: #fff;
}

.process-tiers .process-card {
  background-color: #F0F9F8 !important;
}

.process-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.process-card.featured {
  border: 2px solid #1ABC9C;
}

.process-card.process-card-primary {
  background-color: #F8FBFA !important;
}

.process-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1F3A3D;
  text-align: left;
}

/* Figure grid and tiles */
.figure-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.customize-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
}

.customize-grid .figure-tile {
  flex: 0 0 calc((100% - 1.5rem) / 3);
  min-width: 0;
  max-width: calc((100% - 1.5rem) / 3);
}

.figure-tile {
  aspect-ratio: 1;
  border: 2px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #cccccc;
  position: relative;
}

.figure-tile-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}

.figure-tile-image:hover,
.figure-tile-image.selected {
  filter: none;
}

.figure-tile:hover {
  background-color: #1ABC9C;
}

.figure-tile:hover .figure-content {
  color: #fff;
  background-color: rgba(80, 80, 80, 0.9); /* A dark semi-transparent grey */
}

.figure-tile.selected {
  border-color: #1ABC9C;
  filter: none;
  box-shadow: 0 0 0 2px #1ABC9C;
  background-color: rgba(80, 80, 80, 0.9); /* Keeps it grey after clicking */
}

.figure-content {
  text-align: center;
  font-weight: 600;
  color: #34495E;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  border-radius: 4px;
}

/* Drag and drop placeholder */
.figure-tile-placeholder {
  border: 2px dashed #1ABC9C !important;
  background-color: rgba(26, 188, 156, 0.1) !important;
  box-shadow: inset 0 0 10px rgba(26, 188, 156, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100% !important;
  height: 100% !important;
}

.position-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1ABC9C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.figure-tile.dragging {
  opacity: 0.5;
  transform: rotate(5deg);
}

.drop-zone {
  border: 2px dashed #1ABC9C !important;
}

/* Custom select styling */
.custom-select {
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.custom-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231ABC9C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* Customize page figure items */
.figure-customize-item {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* -------------------
   Content
------------------- */

.project-tile,
.project-tile-add {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.project-tile:hover,
.project-tile-add:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.project-tile-add {
  border-style: dashed;
  color: #1F3A3D;
}


/* Project Centre button */
.btn.ff-cta-project {
    background-color: #1ABC9C;      /* green background */
    color: #ffffff;                 /* white text */
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    padding: 0.5rem 1rem;           /* same height as My Account */
    transition: all 0.2s ease;
    border: 0px solid #1ABC9C;      /* optional: green border like ghost style */
}

.btn.ff-cta-project:hover {
    background-color: #16a085;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
  background-image: url('../img/HeroPlaceImage.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(26, 188, 156, 1) 0%, rgba(26, 188, 156, 1) 50%, rgba(26, 188, 156, 0.6) 60%, rgba(26, 188, 156, 0.3) 70%, rgba(26, 188, 156, 0.1) 80%, transparent 90%);
  pointer-events: none;
}

/* -------------------
   Form focus styles
------------------- */
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
  border-color: #1ABC9C;
}

/* -------------------
   Customize page specific styles
------------------- */
.metadata-card {
  border: 2px solid #1ABC9C;
  box-shadow: 0 0 0 2px #1ABC9C;
}

/* -------------------
   Customize page styles
------------------- */

.customize-tiers {
  background-color: #fff;
}

.customize-tiers p {
  font-size: 0.85rem;
}

.customize-tiers .customize-card {
  background-color: #F0F9F8 !important;
}

.customize-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.customize-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.customize-card.customize-card-primary {
  background-color: #F8FBFA !important;
}

.customize-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1F3A3D;
  text-align: left;
}

.customize-divider {
  border: 0;
  border-top: 1px solid #1ABC9C;
  margin: 1rem 0;
}

/* Smaller font for form labels in left column on customize page */
.customize-card-primary .form-label {
  font-size: 0.875rem;
}

/* Smaller font for select options in left column on customize page */
.customize-card-primary select.form-control {
  font-size: 0.875rem;
}

.customize-card-primary select.form-control option {
  font-size: 0.875rem;
}

/* -------------------
   Global link styling
------------------- */

a,
a:link,
a:visited {
  color: #1ABC9C;
}

a:hover,
a:focus,
a:focus-visible {
  color: #16a085;
  text-decoration: none;
}



/* -------------------
   Delete button styling for project details page
------------------- */

.delete-project-btn {
  color: #dc3545 !important;
  border-color: #dc3545 !important;
  background-color: transparent !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border-radius: 6px !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  width: 100px !important;
  flex: none !important;
}

.delete-project-btn:hover {
  background-color: #dc3545 !important;
  color: #fff !important;
  border-color: #dc3545 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* -------------------
   Global focus / glow override (GREEN)
------------------- */

:root {
  --ff-green: #1ABC9C;
  --ff-green-glow: rgba(26, 188, 156, 0.45);
}

/* Remove default blue focus ring everywhere */
*:focus {
  outline: none !important;
}

/* Keyboard focus (modern browsers) */
*:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px var(--ff-green-glow) !important;
}

/* Buttons */
.btn:focus,
.btn:active,
.btn:focus-visible {
  box-shadow: 0 0 0 3px var(--ff-green-glow) !important;
  border-color: var(--ff-green) !important;
}

/* Links */
a:focus,
a:focus-visible {
  box-shadow: 0 0 0 3px var(--ff-green-glow);
  border-radius: 4px;
}

/* Form controls (Bootstrap override) */
.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--ff-green) !important;
  box-shadow: 0 0 0 3px var(--ff-green-glow) !important;
}

/* Checkboxes & radios */
.form-check-input:focus {
  border-color: var(--ff-green);
  box-shadow: 0 0 0 3px var(--ff-green-glow);
}

.form-check-input:checked {
  background-color: var(--ff-green);
  border-color: var(--ff-green);
}

/* Custom tiles / clickable divs */
.figure-tile:focus,
.figure-tile:focus-visible {
  box-shadow: 0 0 0 3px var(--ff-green-glow);
}

/* Products/Template Gallery Styles */
.products-page {
  background-color: #fff;
}

.products-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.template-image-placeholder {
  height: 200px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content {
  text-align: center;
  color: #6c757d;
}

.template-price {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1ABC9C;
}

.template-card {
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #1ABC9C;
}

.filter-btn.active {
  background-color: #1ABC9C;
  border-color: #1ABC9C;
  color: white;
}

.filter-btn:hover {
  background-color: #1ABC9C;
  border-color: #1ABC9C;
  color: white;
}

.products-cta {
  background: linear-gradient(135deg, #1ABC9C 0%, #1ABC9C 100%);
  color: white;
}

.products-cta .btn-primary {
  background-color: white;
  color: #1ABC9C;
  border-color: white;
}

.products-cta .btn-primary:hover {
  background-color: #f8f9fa;
  color: #1ABC9C;
}

/* Custom badge styling for products page */
.badge.ff-badge {
  background-color: #1ABC9C;
  color: white;
}

.badge.ff-badge-outline {
  border: 1px solid #1ABC9C;
  color: #1ABC9C;
  background-color: white;
}

/* Badge positioning in top right corner */
.badge-position {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

/* -------------------
   Account page tabbed interface
------------------- */

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    min-height: 500px;
}

.account-sidebar-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.account-sidebar {
    display: flex;
    flex-direction: column;
}

.account-sidebar .nav-link {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #6c757d;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
    text-align: left;
    width: 70%;
    display: block;
    background: #f8f9fa;
    text-decoration: none;
}

.account-sidebar .nav-link:hover {
    background-color: #e9ecef;
    color: #1F3A3D;
    border-color: #adb5bd;
}

.account-sidebar .nav-link.active {
    background-color: #1ABC9C;
    color: white;
    border-color: #1ABC9C;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
}

.account-content-container {
    background-color: #fff;
    border-left: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    min-height: 500px;
}

.account-content {
    width: 100%;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .account-sidebar-container {
        position: relative;
        top: 0;
    }
}

/* -------------------
   Signup page specific styles
------------------- */

.signup-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.signup-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.signup-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Form styling for signup page */
.signup-form-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
}

.signup-form-card .card-body {
    padding: 2.5rem;
}

.signup-form-card h2 {
    color: #1F3A3D;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.signup-form-card .list-unstyled li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.signup-form-card .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Responsive adjustments for signup page */
@media (max-width: 991px) {
    .signup-hero-image {
        height: 400px;
    }
    
    .image-overlay {
        position: relative;
        background: transparent;
        padding: 0;
        text-align: center;
    }
    
    .image-overlay h3 {
        font-size: 1.5rem;
    }
    
    .image-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .signup-hero-image {
        height: 300px;
    }
    
    .signup-form-card .card-body {
        padding: 1.5rem;
    }
    
    .signup-form-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .signup-hero-image {
        height: 250px;
    }
    
    .signup-form-card .card-body {
        padding: 1rem;
    }
}
