/* After Nav */
.wrapper-after-nav {
    background-color: white;
    height: 100px;
    position: relative;
}
.wrapper-after-nav p {
    position: absolute;
    top: 65%;
    margin-left: -70px;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #02376D;
}
.wrapper-after-nav h2 {
    padding-top: 34px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
}
/* End After Nav */

/* Content */
.content-bg {
    padding-top: 25px;
    /*background-color: #fff4f2;*/
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: linear-gradient(
            to bottom,
            rgba(2, 55, 109, 1),
            rgba(2, 55, 109, 1),
            rgba(0, 89, 160, 1),
            rgba(0, 109, 220, 1),
            rgba(0, 109, 220, 1)
    );

}
/* Container Form */
.container-form {
    margin-top: 10px;
    border-radius: 20px;
    width: 500px;
    background-color: #ffffff;
    margin-bottom: 60px;
}
.content-text{
    padding: 35px;
}
.content-text h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #0a0a0a;
}
.yellow-color {
    color: var(--yellow-color);
}
.content-text label {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}

.content-text p {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #000000;
    padding-bottom: 50px;
}

.content-text input,
.content-text select,
.content-text textarea {
    font-size: 14px;
    font-weight: 500;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 8px;
    color: #757575;
}

.btn.btn-back {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #c13c34;
    width: 100%;
    padding: 10px;
}
.btn.btn-red {
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    color: #ffffff;
    background-color: var(--main-color);
    width: 100%;
    padding: 10px;
}

.content-text select option {
    font-size: 14px;
    font-weight: 500;
    color: #757575;
}
/* End Container Form */
/*End Content*/


@media screen and (max-width: 768px) {
    .wrapper-after-nav {
        height: 100px;
    }
    .wrapper-after-nav p {
        top: 20%;
        font-size: 14px;
    }
    .wrapper-after-nav h2 {
        padding-top: 60px;
    }
    .container-form {
        width: 90%;
    }
}