body {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
    padding: 0;

}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .15em;
}

.disabled-btn {
    opacity: 0.7;
    pointer-events: none;
}

.coming-soon-sec {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-wrapper-card {
    background-color: #fff;
    border: 0.7px solid #FBBEDE;
    border-radius: 20px;
    overflow: hidden;
}

.inner-wrapper-body {
    background: url(../images/inner-wrapper-body-bg.png) center / cover no-repeat;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.center-icon {
    position: absolute;
    bottom: -33px;
    right: 0;
    left: 0;
    margin: 0 auto;
    background-color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0px 4px 4px 0px #00000008;
}

.inner-wrapper-content {
    padding: 40px 30px;
}

.inner-wrapper-body h2 {
    font-family: "Bagel Fat One", system-ui;
    font-size: 35px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.content-box {
    margin: 30px 0;
}

.content-box h2 {
    color: #DE0D79;
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 15px;
}

.content-box h3 {
    color: #19191A;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 11px;
}

.content-box p {
    font-size: 16px;
    color: #4D4D50;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
}

.form-box {
    margin-bottom: 50px;
}

.form-box .form .input-group {
    gap: 15px;
}

.form-box .form .input-group .form-control {
    border: 0.7px solid #C0C0C3;
    border-radius: 10px !important;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D50;
}

.form-box .form .input-group .form-control::placeholder {
    color: #A9A9AD;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.form-box .form .input-group .input-group-text {
    background-color: transparent;
    border: none;
    padding: 0;
}


.form-box .form .input-group .input-group-text .btn-primary {
    background: #DE0D79;
    border-color: #DE0D79;
    padding: 15px 30px;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    width: 170px;
}

.social-link-box ul.social-list {
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    list-style: none;
}

.social-link-box ul.social-list li a {
    text-decoration: none;
    padding: 10px 22px;
    background: #ffffff;
    border: 0.6px solid #E3E3E4;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
}

.social-link-box ul.social-list li a span {
    color: #262628;
    font-weight: 500;
}

.social-link-box p {
    color: #4D4D50;
    font-weight: 500;
    font-size: 16px;
}


/**==================================
RESPONSIVE CSS START
=====================================**/

@media all and (min-width: 576px) and (max-width: 767px) {
    .coming-soon-sec {
        height: auto;
        padding: 25px 0;
    }

    .inner-wrapper-body h2 {
        font-size: 24px;
    }

    .inner-wrapper-body {
        padding: 30px 20px;
    }

    .inner-wrapper-body .ai-girl-image {
        max-width: 200px;
    }

    .content-box p br {
        display: none;
    }
}

@media all and (min-width: 320px) and (max-width: 575px) {
    .coming-soon-sec {
        height: auto;
        padding: 25px 0;
    }

    .inner-wrapper-body {
        flex-direction: column;
        gap: 25px;
        padding: 20px 20px;
    }


    .inner-wrapper-body h2 {
        font-size: 24px;
    }

    .inner-wrapper-body .ai-girl-image {
        margin-bottom: 40px;
    }

    .inner-wrapper-content {
        padding: 20px 12px;
    }

    .content-box h2 {
        font-size: 24px;
    }

    .content-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 30px;
    }

    .content-box p br {
        display: none;
    }

    .content-box p {
        font-size: 15px;
    }

    .form-box .form .input-group {
        flex-direction: column;
        align-items: center;
    }


    .form-box .form .input-group .form-control {
        width: 100%;
    }

    .social-link-box ul.social-list {
        gap: 8px;
    }
}