
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


* {
  font-family: 'Poppins', sans-serif;

}
.content {
    display: none;
}

.content.hidden {
    display: none;
}

.image img {
    display: none;
    max-width: 100%;  /* Ensure it scales properly */
}

.image img:not(.hidden) {
    display: block; /* Show active image */
}



/* Make the entire page take up full height */
html, body {
    display: flex;
    flex-direction: column;
}

/* Ensure content fills the remaining space */
main {
    flex: 1; /* Pushes the footer down */
}
.des{
    display: flex;
    width: 44%;
    font-size: 1.5rem;
}
.final{
    font-size: 0.7rem;
}
.final1{
    display: flex;
    align-items: flex-start;
    width: 90%;
    padding-left: 30px;
}
h3{
    color: #30A3C2;
    margin: 0;
}
/* Footer Styling */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ebf1f7; /* Keep existing background */
    color: black;
    padding: 1rem 0; /* Reduces top and bottom padding */
    font-size: 0.9rem; /* Slightly smaller text */
    text-align: center;
    width: 100%;
}
.footer_terms{
text-decoration: none;
color: #30A3C2;
}

.footer-th{
    display: flex;
    justify-content: end;
    width: 60%;
}
.footer-thh{
    display: flex;
    justify-content: center;
    width: 40%;
    gap: 40px;
}
.footer-menu{
    text-decoration: none;
    list-style: none;
}
.footer-inner{
text-decoration: none;
    color: black;

}
@media (max-width: 768px) {
    .footer-th{
    display: flex;
    justify-content: center;
    width: 100%;
    
}
.footer-thh{
    display: flex;
    justify-content: center;
    width: 100%;
}
footer{
    flex-direction: column;
    padding: 0.5rem 0;
}
}
body {
    font-family: 'Poppins', Arial;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    text-align: center;
    height: 100vh;
}


header {
    background: #ebf1f7;
    padding: 0.3rem 1rem;
}
nav {
    display: flex;
    padding-right: 20px; /* Optional: Adds spacing from the right edge */
justify-content: space-between;
}
.cta-btn {
    background: #2fa2c2;
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.sections {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-style{
    /*width: 65%;*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.subheading {
    font-size: 1rem; /* Slightly smaller than main heading */
    
    font-weight: 600; /* Medium bold */
    margin-top: -10px; /* Pulls it closer to the main heading */
}
@media (max-width: 768px) {
    .content-style{
    width: 90%;
    text-align: left;
}
.subheading{
    text-align: center;
}
}
/* Header Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 20px;
}

/* Desktop Menu */
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
    align-items: center;
}
.nav-menu li {
    display: inline;
}
.nav-menu .nav-link {
    color: #30A3C2;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
}

/* Mobile Hamburger Icon */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu (Slide-in) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu .nav-menu {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.mobile-menu .nav-link {
    font-size: 1.2rem;
    color: #30A3C2;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
/* When mobile menu is open */
.mobile-menu.open {
    right: 0;
}

/* Responsive (Show hamburger and hide desktop menu on small screens) */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .mobile-nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
}
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}
.menu-overlay.active {
    display: block;
}
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .mobile-nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
}
/* Logo */
.nav-logo img {
    height: 50px;
    width: auto;
    cursor: pointer;
}



.hidden {
    display: none;
}


/* Heading for Image */
.image-heading {
    margin-top: 50px; /* Adds spacing before the image */
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom:10px;
    color: #333; /* Dark grey for good readability */
}

/* Styling for the Image */
.home-image {
    width: 100%; /* Makes image responsive */
    max-width: 1200px; /* Prevents it from being too large */
    display: block;
    border-radius: 1px; /* Optional: Adds rounded corners */
}

h1 {
    font-size: 2rem; /* Makes the heading larger */
    font-weight: bold;
}

.highlight-app {
    color: #30A3C2; /* Changes ".App" to the new color */
}

.subheading {
    font-size: 1rem; /* Slightly smaller than main heading */
    
    font-weight: 600; /* Medium bold */
    margin-top: -10px; /* Pulls it closer to the main heading */
}


/* .faq-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    margin-top: 20px;
    text-align: left;
} */


/* Home Page Content Container */
.home-container {
    width: 80%; /* Set width */
    max-width: 1000px; /* Ensures it doesn't stretch too much on larger screens */
    background: white; /* White background */
    padding: 30px; /* Adds spacing inside */
    margin: 30px auto; /* Centers the container */
    border-radius: 0px; /* No border */
    text-align: center; /* Centers all content */
    color: black;
}


.support-container {
    width: 60%; /* Ensures content is nicely contained */
    max-width: 1000px; /* Limits maximum width */
    background: white; /* White background for readability */
    padding: 20px;
    margin: 30px auto 50px auto; /* Centers container */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a clean look */
    text-align: left; /* Ensures all text is left-aligned */
}

#support {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    background-color: #f4f4f4;
    transition: background 0.3s ease;
}

.faq-question2 {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 5px 5px 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 5px;
    background: #ffffff;
    border-radius: 5px;
    width: 96%;
    text-align: left;
    font-size:20px;
}

.sub-question {
    /* background: #f8f8f8; */
    font-weight: normal;
}

.faq-question::after {
    content: "▼";
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}
.active-sub-question {
    border: 2px solid #30A3C2;
}

.active-question {
  color: blue;
}



/* Responsive Design */
@media (max-width: 768px) {
    #support {
        max-width: 90%;
    }
}

.pricing-container {
    width: 90%;
    margin: 40px auto 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-cards {
    display: flex;
    justify-content: end;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 25px;
        margin-right: 10px;

}
.sd{
    padding: 0 20px 20px 20px;
}
.stl{
    font-size: 28px;
    font-weight: bold;
}
.col{
    padding: 30px 0 20px 0;

}
@media (max-width: 768px) {
.col{
    background-color: #f7e1d7;
    border-radius: 10px 10px 0 0;
    padding: 30px 0 20px 0;
}
.growth-up { background: #d0c7f0; }
.business-up { background: #eddfc7; }
.business-plus-up { background: #ade0ed; }
.pricing-container{
    width: 100%;
}
.faq-question{
    font-size:13px;
}
.faq-question2{
    font-size:12px;
}
.faq-answer{
    font-size:10px;
}
}
.rup{
    font-size: 1.5rem;
    font-weight: normal;
    padding: 0 5px;
}
.price-bar{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content:end;

}
.flexi{
    width: 19%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flexi-font{
    font-size: 2.5rem;
    color: gray;
    letter-spacing: 1;
    font-weight: bold;
}
.pricing-card {
    flex: 1;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pricing-card h2 {
    font-size: 2rem;
    color: #222;
    margin: 0;
}

.pricing-card p {
    font-size: 0.9rem;
    color: #666;
}

.pricing-btn {
    background: #fdfdff;
    color: black;
    margin: 0 0 20px 0;
    padding: 7px 8px;
    font-size: 0.9rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 65%;
    text-decoration-thickness:none #0d172a solid;
    transition: all .1s cubic-bezier(.4, 0, .2, 1)
}
@media (max-width: 768px) {
    .pricing-btn {
    background: #fdfdff;
    color: black;
    margin: 0 0 20px 0;
    padding: 11px 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 65%;
    text-decoration-thickness:none #0d172a solid;
    transition: all .1s cubic-bezier(.4, 0, .2, 1)
}
.flexi{
    display: none;
}
}
.pricing-btn i {
    margin-right: 8px;
    margin-bottom: 3px;
    vertical-align: middle;
}

.pricing-btn:hover {
    background: #30A3C2;
    color: white;
    border-radius: 20px;
}
.free{border:2px solid #ed8c8c; background: #f7f7f7;}
.growth {border:2px solid #8f7fd7;  background: #f7f7f7;}
.business {border:2px solid #dca959; background: #f7f7f7; }
.business-plus {border:2px solid  #72d2eb;  background: #f7f7f7;}


.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    table-layout: fixed;
}

.pricing-table th, .pricing-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}


/* Pricing table column colors */
#pricing-table thead th:nth-child(2) { /* Free column header */
  background-color: #f7f7f7;
  border-top: 2px solid #ed8c8c;
  border-right: 2px solid #ed8c8c;
        border-left: 2px solid #ed8c8c;
}

#pricing-table tbody td:nth-child(2) { /* Free column cells */
  background-color: #f7f7f7;
    border-right: 2px solid #ed8c8c;
        border-left: 2px solid #ed8c8c;

}

#pricing-table thead th:nth-child(3) { /* Growth column header */
  background-color: #f7f7f7;
    border-top: 2px solid #8f7fd7;
  border-right: 2px solid #8f7fd7;
        border-left: 2px solid #8f7fd7;
}

#pricing-table tbody td:nth-child(3) { /* Growth column cells */
  background-color: #f7f7f7;
    border-right: 2px solid #8f7fd7;
        border-left: 2px solid #8f7fd7;
}

#pricing-table thead th:nth-child(4) { /* Business column header */
  background-color: #f7f7f7;
      border-top: 2px solid #dca959;
  border-right: 2px solid #dca959;
        border-left: 2px solid #dca959;
}

#pricing-table tbody td:nth-child(4) { /* Business column cells */
  background-color: #f7f7f7;
    border-right: 2px solid #dca959;
        border-left: 2px solid #dca959;
}

#pricing-table thead th:nth-child(5) { /* Business Plus column header */
  background-color: #f7f7f7;
    border-top: 2px solid #72d2eb;
  border-right: 2px solid #72d2eb;
        border-left: 2px solid #72d2eb;
}

#pricing-table tbody td:nth-child(5) { /* Business Plus column cells */
  background-color: #f7f7f7;
    border-right: 2px solid #72d2eb;
        border-left: 2px solid #72d2eb;
}
/* Add border-bottom to the last row for each column */
#pricing-table tbody tr:last-child td:nth-child(2) { /* Free column last cell */
  border-bottom: 2px solid #ed8c8c;
}

#pricing-table tbody tr:last-child td:nth-child(3) { /* Growth column last cell */
  border-bottom: 2px solid #8f7fd7;
}

#pricing-table tbody tr:last-child td:nth-child(4) { /* Business column last cell */
  border-bottom: 2px solid #dca959;
}

#pricing-table tbody tr:last-child td:nth-child(5) { /* Business Plus column last cell */
  border-bottom: 2px solid #72d2eb;
}
/* Feature name column (first column) - keep it neutral */
#pricing-table td.feature-name {
  background-color: #f8f9fa !important;
  font-weight: 500;
}




.pricing-table td:first-child, 
.pricing-table th:first-child {
    text-align: left;
}

.pricing-table td:not(:first-child),
.pricing-table th:not(:first-child) {
    text-align: center;
    padding-right:40px;
}

.pricing-table th {
    background: #f8f8f8;
    font-size: 1.1rem;
}

.pricing-table td {
    font-size: 1rem;
}
@media (max-width: 1024px) {
.pricing-table td:first-child, 
.pricing-table th:first-child {
    padding-left: 0;
}
}
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        margin-right:0;
        gap:20px
    }

    .pricing-card {
        max-width: 90%;
        margin:0 !important;
    }

    .pricing-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .pricing-table {
        display: none; 
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    .des{
        width: 90%;
        font-size: 0.9rem;
    }
    .final1{
        padding-left: 0;
    }
    .final{
        font-size: 0.8rem;
    }

    .pricing-card {
        width: 90%;
        position: relative;
    }

    .features-list {
        margin-top: 15px;
        text-align: left;
        padding: 10px;
        border-radius: 8px;
    }

    .features-list li {
        list-style: none;
        padding: 5px 0;
        font-size: 14px;
        display: flex;
        gap: 10px;
    }

    .features-list li:before {
        content: "✔";
        color: black;
        font-weight: bold;
        border: 2px solid black;
        border-radius: 50%;
        width: 20px;
        display: flex;
        justify-content: center;
    }
}

/* Tooltip icon style */
.tooltip-icon {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin-left: 5px;
    color: #666;
    cursor: pointer;
    background: #f1f1f1;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
}

/* Tooltip box */
.tooltip-box {
    width: 30%;
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    white-space: wrap;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Style for currency dropdown */
.currency-selector {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content:end;
    width:100%;
    gap: 10px;
}

.currency-selector label {
    font-weight: normal;
    color: #333;
}

.currency-selector select {
    padding: 5px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
}


/* imo */

.circelround{
         background-color: #2fa2c2;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    }
    .borderr{
    border: 2px solid black;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center; 
}
/* Default - Mobile First (Vertical) */
.dashline {
        height: 2px; /* Thin horizontal line */
        width: 286px; /* Adjust width as needed */
        background: repeating-linear-gradient(
            to right,
            #30A3C2,
            #30A3C2 5px,
            transparent 5px,
            transparent 10px
        );
    }
@media only screen and (max-width: 1024px) and (min-width: 768px){
.dashline{
    width: 75px;
}
.circelround{
    background-color: #2fa2c2;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.borderr{
    border: 2px solid black;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.font{
    font-size: 0.9rem;
}
.inner{
    font-size: 0.7rem;
}
}
@media (max-width: 768px) {
    .dashline {
    width: 2px; /* Thin vertical line */
    height: 88px; /* Adjust height as needed */
    background: repeating-linear-gradient(
        to bottom,
        #30A3C2,
        #30A3C2 5px,
        transparent 5px,
        transparent 10px
    );
}
.circelround{
    background-color: #2fa2c2;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.borderr{
    border: 2px solid black;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center; 
}
    
}


.flex{
    display: flex;
    flex-direction: row;
    align-items: center; 
    gap: 10px;


}
@media (max-width: 768px){
.flex{
    flex-direction: column;
}
}
.flexcenter{
        display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: space-around;
}
@media (max-width: 768px) {
    .flexcenter {
       flex-direction: column;
        width: 68%;
    justify-content: space-around;


    }
}
.Imagesize{
    width: 13%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .Imagesize{
        width: 68%;
    }
}
.circledash{
    display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top:10px;
}
@media (max-width: 768px) {
    .circledash {
       flex-direction: column;
    }
}
.flextext{
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: space-around;
    width: 100%;
}
@media (max-width: 768px){
    .flextext{
        flex-direction: column;
    }
}
.font{
    font-weight: bold;
    font-size: 1rem;
}
.innerfont{
    font-size: 0.8rem;
}

@media (max-width: 768px){
    .innerfont{
        text-align: justify;
    font-size: 0.7rem;

    }
    .font{
        font-size: 0.9rem;
    }
}
.width{
    width: 20%;
}
@media (max-width: 768px){
    .width{
        width: 75%;
    }
}
.border{
    border: 5px solid #30A3C2;
    border-radius: 50px;
    width: 65%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px){
    .border{
        flex-direction: row;
        width: 89%;
    }
}


/* Terms */

/* Terms & Conditions Page Container */
.terms-container {
  width: 80%;
  max-width: 1000px;
  background: white;
  padding: 20px;
  margin: 10px 10px 50px 10px;
  border-radius: 8px;
  text-align: left;
}

/* Individual Term Section */
.terms-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

/* Title Styling for Terms & Conditions */
.terms-title {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background-color: #f4f4f4;
  transition: background 0.3s ease;
}

/* Hide Content Initially */
.terms-content {
  display: none;
  padding: 5px 10px;
  background: #ffffff;
  border-radius: 5px;
  width: 100%;
  text-align: justify;
}

/* Toggle Arrow (Optional, similar to FAQ) */
.terms-title::after {
  content: "▼";
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.terms-item.active .terms-title::after {
  transform: rotate(180deg);
}
.setting{
    text-align: left;
    width: 69%;
}
/* Responsive Design */
@media (max-width: 768px) {
  .terms-container {
    width: 90%;
  margin: 0;

  }
  .setting{
    width: 87%;
}
}







.page-header {
            margin-top: 30px;
            font-size: 24px;
            font-weight: bold;
			
        }

        .intro-text {
            max-width: 70%;
            margin: 10px auto 20px;
            color: #555;
        }

        /* Tabs */
        .tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 5px;
        }

        .tab {
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            background: #f4f4f4;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
			margin-bottom: 10px;
        }

        .tab.active {
            background: #30A3C2;
            color: white;
        }

        /* Section Layout */
        .content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 70%;
            height: 350px; /* Fixed height */
            margin: 5px auto; /* Adds spacing on the sides */
            padding: 0 10px; /* Adjusted padding */
            overflow: hidden;
        }

        /* Text Area (40% width) */
        .text {
            width: 39%;
            text-align: left;
            padding: 20px;
        }

        .text h2 {
            color: #30A3C2;
        }

        /* Image Area (60% width, fixed height) */
        .image {
            width: 53%;
            height: 85%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            overflow: hidden; /* Ensures no extra space */
        }


        /* Image Settings (No Margins/Padding) */
        .image img {
            width: 100%;
            height: 100%;
            
            border-radius: 10px; /* Matches container */
			background: #ffdddd;
        }

        /* Hide sections initially */
        .hidden {
            display: none;
        }


         @media (max-width: 768px){
            .page-header{
                font-size: 17px;
            }
            .intro-text{
                 max-width: 90%;
                 text-align:justify;
            }
            .tabs{
                overflow: scroll;
                justify-content: flex-start;
            }
            .tab{
                padding: 8px 24px;
            }
            .content{
                flex-direction: column-reverse;
                max-width: 95%;
            height: 395px;
            }
            .image{
                width: 100%;
                height:100%;
            }
            .text{
                width: 100%;
            }
            .text h2{
                text-align: center;
            }
            .text p{
                text-align: center;
            }
        }




/*iput*/
.input .input__label {
    position: absolute;
    left: 12px;
    top: 16px;
    padding: 0 5px;
    font-size: 13px;
    color: white;
    transition: transform 0.2s ease-in-out, color 0.3s;
    transform-origin: 0 0;
    pointer-events: none; /* Prevent clicking on label */
}

/* Input field */
.input__field {
    width: 100%;
    padding: 14px 12px;
    font-size: 16px;
    border: 1px solid lightgray;
    border-radius: 4px;
    background: transparent;
    transition: border-color 0.3s ease-in-out;
}

/* Focus effect: Move label and highlight border */
.input__field:focus {
    border-color: white;
    outline: none;
}

/* Move label up when input is focused or has value */
.input__field:focus + .input__label,
.input__field:not(:placeholder-shown) + .input__label {
    transform: translate(0, -120%) scale(0.8);
    color: white;
    background: #30a3c2;
}

.blurb-tagline {
    display: block;
    margin-top: 10px;
}




input:-webkit-autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important; /* ðŸ‘ˆ force white bg */
  -webkit-text-fill-color: #000 !important; /* optional: text color */
  transition: background-color 5000s ease-in-out 0s; /* prevent flash */
}