.message {
    color: rgb(27, 27, 27);
    font-size: 20px;
    margin-left: auto;
    padding-left: 1%;
}

.sub {
    color: rgb(44, 44, 44);
}

.error-message {
    font-size: 15px;
    color: rgb(233, 81, 43);
    padding-left: 1%;
}

.main {
    font-size: large;
    color: rgb(5, 12, 36);
    font-family: "Host Grotesk", sans-serif;
    background-color: #ffffff;
    padding-bottom: 50px;
    border-radius: 1mm;
}

.input-wrapper {
    display: flex;
    align-items: center;
    /* border: 0.5px solid #04aa6d; */

    border-radius: 26px;
    background-color: #e2f8ead7;
    width: 500px;
    margin: 0 auto;
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px;
    font-size: 16px;
    color: #31936e;
    background-color: transparent;
}

.input-wrapper input::placeholder {
    color: #31936da1;
    opacity: 1;
    font-family: "Host Grotesk", sans-serif;

}


.btn {
    background-color: #31936e;
    border-radius: 25px;
    border: none;
    color: white;
    font-size: 17px;
    font-weight: 400;
    font-family: "Host Grotesk", sans-serif;
    padding: 14px 25px;
    cursor: pointer;
}

.btn:hover {
    background-color: #00915c;
    color: #ffffff;
}

.hero {
    text-align: center;
    padding: 1rem;
    /* font-family: "Host Grotesk", sans-serif; */

}

.hero h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;

}

.hero span {
    font-size: 20px;
    color: #31936e;
    font-weight: 500;

}

.hero p {
    color: #5d5d62;
    font-size: 18px;
    margin-bottom: 10px;
}

.steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    max-width: 100%;
    font-family: "Host Grotesk", sans-serif;

}

.step {
    background: white;
    color: #5d5d62;
    padding: 40px 20px 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 22px;
    font-weight: bold;
    background: #31936e;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.how-it-works h2 {
    margin-bottom: 40px;
    font-size: 24px;
}


footer {
    color: #5d5d62;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Host Grotesk", sans-serif;
    background: white;
    flex-wrap: wrap;
    /* Allows wrapping for responsiveness */
}

.policy {
    width: 70%;
}

.copyright {
    width: auto;
}

/* Links Styling */
.policy a,
.copyright a {
    color: #31936E;
    text-decoration: none;
}

/* Responsive - Small Screens (Mobile) */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
    }

    .policy,
    .copyright {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Make sure it's above other elements */
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #31936E;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#openFooterPopup {
    border: none;
    background-color: transparent;
    font-weight: 600;
    color: #31936E;
    cursor: pointer;
    font-family: "Host Grotesk", sans-serif;

}