﻿
:root {
    --healthcare-50: #f0f9fa;
    --healthcare-100: #e5f5f8;
    --healthcare-600: #00B6CF;
    --healthcare-700: #009BB0;
    --healthcare-800: #00839e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --green-500: #10b981;
    --green-600: #059669;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /*font-family: 'open sans', Helvetica, Arial, sans-serif;*/
}


body {
    min-height: 100vh;
    background-color: var(--gray-50);
    display: flex;
    flex-direction: column;
}

.header {
    background-color: var(--healthcare-600);
    padding: 0.3rem;
    color: white;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.header-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 3rem;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.header-text {
    font-weight: 600;
    color: white;
    font-size: 1.125rem;
}

.main-content {
    flex-grow: 1;
    display: flex;
    /*align-items: center;*/
    margin-top: 5em;
    justify-content: center;
    padding: 2rem 1rem;
}

.card {
    width: 100%;
    max-width: 600px;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    text-align: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.icon-success {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--green-500);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.info-text {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.info-box {
    background-color: var(--healthcare-50);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.info-box-title {
    font-weight: 600;
    color: var(--healthcare-800);
    margin-bottom: 0.5rem;
    text-align: left;
}

.info-list {
    text-align: left;
    list-style-position: inside;
    color: var(--gray-700);
    margin-left: 0.5rem;
}

    .info-list li {
        margin-bottom: 0.5rem;
    }

.contact-info {
    color: var(--healthcare-700);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--healthcare-700);
    color: var(--healthcare-700);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .btn:hover {
        background-color: var(--healthcare-700);
    }

/* New button style for the intake redirect */
.intake-btn {
    display: inline-block;
    background-color: var(--green-500);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-bottom: 1rem;
}

    .intake-btn:hover {
        background-color: var(--green-600);
    }

/*.footer {
    background-color: var(--gray-100);
    padding: 1rem;
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    border-top: 1px solid var(--gray-200);
}*/

.footer {
    background-color: #f8f9fa; /* light gray background for main content */
    color: #555;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center; /* center the container */
}

    .footer .footer-content {
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px;
        text-align: left; /* keep disclaimers left-aligned */
    }

    .footer .disclosures {
        font-size: 10px;
        color: #333;
    }

        .footer .disclosures strong {
            font-weight: 600;
        }

.footer-bottom {
    background-color: white; /* slightly darker tone */
    padding: 10px 0;
    text-align: center;
    font-size: 0.875rem;
    color: #333;
}

@media (max-width: 600px) {
    .footer .footer-content {
        font-size: 0.75rem;
        padding: 15px;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }
}


/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-text {
        margin-top: 0.5rem;
    }
}


.accent-color {
    color: #00B6CF;
}


ul.checkmark {
    list-style-type: none;
}

    ul.checkmark li:before {
        content: "\2713\0020";
        font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
        color: #00B6CF;
    }


/*form*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    font-family: "Inter", sans-serif;
}*/

.formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.formbold-form-wrapper {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    background: white;
}

.formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}

    .formbold-input-flex > div {
        width: 50%;
        display: flex;
        flex-direction: column-reverse;
    }

.formbold-textarea {
    display: flex;
    flex-direction: column-reverse;
}

.formbold-form-input {
    width: 100%;
    padding-bottom: 10px;
    border: none;
    border-bottom: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    color: #07074D;
    outline: none;
    resize: none;
}

    .formbold-form-input::placeholder {
        color: #536387;
        font-weight: 500;
        font-style:italic;
    }

    .formbold-form-input:focus {
        border-color: #00B6CF;
    }

.formbold-form-label {
    color: #07074D;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 18px;
}

.formbold-form-input:focus + .formbold-form-label {
    color: #005177;
}


.custom-btn {
    font-size: 16px;
    border-radius: 5px;
    padding: 12px 25px;
    border: none;
    font-weight: 500;
    background-color: #00B6CF;
    color: white;
    cursor: pointer;
    margin-top: 25px;
}

    .custom-btn:hover {
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
        background-color: #00839e;
    }



.body-container {
    display: flex;
    align-items: center; /*// vertical alignment */
    justify-content: center; /*// horizontal alignment, if needed*/
     height: 300px; /*// adjust as needed*/
    
}


.error {
    color: red;
    font-size: 14px;
}
