:root {
        --bg: #0b1020;
        --card: #121933;
        --ink: #202632;
        --muted: #9aa4bd;
        --accent: #5aa7ff;
        --warn: #ff0000;
}

* {
        box-sizing: border-box
}
body {
        margin: 0;
        color: var(--ink);
        background:#ffffff;
        min-width: unset !important;
        font-family: "Inter", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
}
input::placeholder{
        color: #333333;
        opacity: .4;
}
header {
        height: 68px;
        position: sticky;
        top: 0;
        backdrop-filter: saturate(140%) blur(6px);
        background: rgba(255, 255, 255, .7);
        display: flex;
        justify-content: space-between;
}

header .left{
        display: flex;
        align-items: center;
        height: 100%;
        padding-left:35px;
        gap: 35px
}
header .right{
         display: flex;
        align-items: center;
        height: 100%;
        padding-right:35px;
}

h1 {
        font-size: 18px;
        margin: 0;
        color: #202632;
        font-weight: bold;
}

main {
        margin: 0
        
}

.card {
        overflow: hidden;
        display: flex;
        align-items: center;
        flex-direction: column;
}

.card h2 {
        margin: 0;
        font-size: 32px;
}
.card h3 {
        margin: 0;
        font-size: 18px;
        padding : 10px 0;
}

.card h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 400;
}

form {
        display: grid;
        gap: 18px
}

fieldset {
        border: 0;
        padding: 0;
        margin: 0;
}

.section {
        padding: 20px 0;
        background-color: #ffffff;
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
        flex-direction: column;
}
.bg-navy{
        background: #202632;
        color:#ffffff;
}
.bg-fa{
        background: #FAFAFA;
}
.bg-6c{
        background: #6C7993;
        color:#ffffff;
}
.bg-50{
        background: #506794;
        color:#ffffff;
}
.bg-27{
        background: #274174;
        color:#ffffff;
}


img.infograph_process { border-radius: 20px; margin-top:35px; }

.grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 14px;
       
}
.simpleInfo .grid{
       font-weight: 300;
}

.step{
        font-size: 14px;
        margin-top:8px;
        padding: 40px 32px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
}
.step p{
        display: flex;
        margin: 0;
}
.step .title{
        margin-bottom : 15px
}

.myInfo{
        width: 100%;
        max-width: 757px;
        padding: 24px 32px;
        border-radius: 20px;
        background: #F3F3F3;
        display: flex;
        flex-direction: column;
        margin: 50px 0px;
}
.myInfo .grid{
        grid-template-columns: 1fr 1fr 1fr 1fr;
}
.myInfo .border-bottom{
        border-bottom: 1px solid #D9D9D9;
}
.reqInfo{
        width: 100%;
        max-width: 757px;
        padding: 24px 32px;
        border : 1px solid #274174;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 32px 0px;
}

.myInfo input{
        width: 100%;
        background-color: unset;
        border: none;
        color: #000000;
        font-weight: 400;
        padding: 0;
}
.myInfo .biz_nm{
        font-size: 16px;
        font-weight: 500;

}
.myInfo .title{
        font-size: 14px;
        margin-bottom:5px;
        margin-top:0;
}

.inputWrap {
        position: relative;
        height: 36px;
}
.inputWrap .btnClear {
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: inherit;
        background-color: unset;
        border: none;
        outline: none;
        cursor: pointer;
}

.reqInfo .grid{
        grid-template-columns: 1fr 1fr;
}
.reqInfo .item p{
        margin-bottom:5px;
}
.reqInfo input{
        width: 100%;
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #D9D9D9;
}
.reqInfo input:disabled{
        background-color: #EFEFEF;
}
.termsInfo{
        width: 100%;
        max-width: 757px;
        padding: 24px 32px;
        border : 1px solid #274174;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 32px 0px;
}
.termsInfo .title{
        font-size: 14px;
        margin-bottom:5px;
        margin-top:0;
        font-weight: 600;
}
.termsInfo textarea{
        width: 100%;
        height: 150px;
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #D9D9D9;
        resize: none;
        font-family: 'Inter', sans-serif;
}
.termsInfo label{
        width: 100%;
        display: flex;
}
.agree {
        display: flex;
        background-color: #EFEFEF;
        border: 1px solid #D9D9D9;
        border-radius: 6px;
        align-items: center;
}
.agree label{
        display: flex;
        padding: 10px 10px;
        cursor: pointer;
        align-items: center;
        font-size: 14px;
}
.agree input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #D9D9D9;
        appearance: none;
        outline: none;
        transition: border-color 0.2s;
        background: #fff;
        display: flex;
        cursor: pointer;
        margin-left: 15px;

}
.agree input[type="checkbox"]:checked {
        background: #9FB1D7;
}
.agree input[type="checkbox"]:checked::after {

        border: solid #fff;
        transform: rotate(45deg);
        pointer-events: none;
}

.agree.checked {
        background-color: #9FB1D7;
        transition: background 0.3s;
}

.hint {
        font-size: 12px;
        color: var(--muted)
}

.row {
        display: flex;
        gap: 10px
}

.row>* {
        flex: 1
}
.footerarer{
        height: 68px;
        width: 100%;
}
.actions {
        display: flex;
        background: rgb(147, 154, 167, .7);
        height: 68px;
        bottom: 0;
        width: 100%;
        position: fixed;
        align-items: center;
        justify-content: center;
        color:#ffffff;
        font-size:18px;
        cursor: pointer;
        backdrop-filter: saturate(140%) blur(6px);
}


.required::after {
        content: "*";
        color: var(--warn);
}

.help {
        font-size: 12px;
        color: var(--muted);
        margin-left: 8px
}

.pill {
        display: inline-block;
        padding: 2px 8px;
        border-radius: 999px;
        border: 1px solid #31406f;
        color: #b6c2e1;
        font-size: 12px
}

.error {
        border-color: #ff8f8f !important;
        box-shadow: 0 0 0 2px rgba(255, 138, 138, .15) inset
}
.modal{
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .7);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        display: none
}
.modal .content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #ffffff;
        color: #202632;
        border-radius: 10px;
        padding: 50px 100px 84px 100px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.modal .body {
        padding: 10px 0;
        font-size: 16px;
        text-align: center;
        width: 180px;
}
.modal .body p {
        margin: 0;
}
.modal .footer {
        position: fixed;
        cursor: pointer;
        width: 100%;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        color: #ffffff;
        background-color: #202632;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #c5c5c5;
}
::-webkit-scrollbar-track {
    background: #efefef;
    border-radius: 5px;
}




@media (max-width: 768px) {
        .card h2 { font-size: 28px; }
        .card h3 { font-size: 16px; }
        img.infograph_process { height:280px;}
        .section{
                padding-right: 15px !important;
                padding-left: 15px !important;
        }
        .step {
                padding: 24px 16px !important;
        }
        .grid .item { display:flex; flex-direction: column; justify-content:space-between; }
        .reqInfo {
            padding: 24px 20px !important;
        }
        input::placeholder{
                font-size: 12px;
                letter-spacing: -1px;
        }
}