body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}


.bottom-part {
    display: flex;
    flex-direction: column;
    background-color: #006574;
    border-radius: 10px;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 1.5rem;
}

.bottom-part h6 {
    text-align: left;
    font: normal normal 400 24px/32px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0;
}

.bottom-part h6::after {
    content: '';
    display: block;
    width: 30%;
    border: 2px solid #E3913A;
    border-radius: 50px;
    margin-top: 20px;
}

.bottom-part p {
    text-align: left;
    font: normal normal 100 16px/22px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0;
}

.bottom-part input {
    padding: 18px;
    font-size: 16px;
    line-height: 22px;
    outline: 0;
    background: none;
    box-shadow: none;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    color: #FFFFFF;
    margin-top: 10px;
    width: 100%;
}

.bottom-part input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}


@media screen and (max-width: 991px) {


    .bottom-part {
        width: 65%;
        margin: 0 auto;
    }


}

@media screen and (max-width: 767px) {
    .bottom-part {
        width: 100%;
    }

}


.btn-orange {
    all: unset;
    position: relative;
    z-index: 2;
    cursor: pointer;
    background-color: #E3913A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 22px;
    transition: all 0.3s ease-in-out;
}