.free-trial-header {
    padding: 2.5em;
    font-size: 1.75rem;
    font-weight: 500;
    background: #E8F2F9;
    text-align: center;
    color: #053763;
}
.free-trial-sub-header {
    font-size: 1rem;
    font-weight: 400;
    color: #262626;
    text-align: center;

}
.free-trial-container {
    display: flex;
    justify-content: center;
}
.form-card {
    background-color: #fff; 
    color: #053763; 
    padding: 25px; 
    border-radius: 8px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    border: 1px solid #D7D7D7;
    width: 480px; 
    margin: 60px 50px 50px;
}
#checkbox {
    cursor: pointer;
    box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.16);
}
.permission {
    margin: 0;
    color: #666; 
    font-size: 14px; 
}
.thankyou-page {
    display: none;
}
.thankYouContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
    background-color: #f7f9fc; 
}
.thankYouContent {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 20px 40px;
    box-shadow: 1px 1px 15px 10px rgb(77 118 255 / 11%);
    width: 38rem;
}
.thankYouContent > p {
    color: #053763;
}
.thankYouIcon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background-color: #053763; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.text-content {
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}
.footer-bottom {
    font-size: .813rem;
    line-height: 1.38;
    letter-spacing: normal;
    color: #8c8c8c;
}
.suggestions-box {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-height: 10rem;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    width: 25.25em;
    text-align: start;
    color: #343434;
    font-weight: 400;
    font-family: 'Inter';
    font-size: 17px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}
.suggestion-item {
    padding: 7px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f1f1f1;
}
.country-code {
    text-align: center;
    background-color: #fff !important;
}
@media (max-width: 768px) {
    .free-trial-header {
        font-size: 20px;
        padding: 1.5em;
    }
    .free-trial-sub-header {
        font-size: 14px;
        padding: 0 10px;
    }
    .free-trial-container {
        flex-direction: column; 
        align-items: center;
        padding: 10px;
    }
    .form-card {
        width: 90%;
        margin: 25px auto;
        padding: 20px;
    }
    .permission {
        text-align: start;
        font-size: 10px;
    }
    .thankYouContainer {
        height: 40rem;
        padding: 20px;
    }
    .thankYouContent {
        width: 90%; 
        padding: 15px 20px; 
    }
    .thankYouIcon {
        width: 40px; 
        height: 40px;
        font-size: 18px;
    }
    .text-content {
        font-size: 14px; 
    }
     #countryCode {
        padding: 7px !important;
        max-width: 20% !important;
    }
    .suggestions-box {
        width: 16.5em;
    }
}