@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg: #f6f7fb;
    --card: #d8d8d8c9;
    --accent: #1f6feb;
    --muted: #6b7280
}

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    min-height: 100vh
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 20px;
    background: #fac1c4;
}

.logo {
    width: 80px;
    height: auto
}

.right a{
    border: 1px solid #000;
    border-radius: 50px;
    padding: 7px 40px;
    color: #242424;
    font-size: 12.8px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    letter-spacing: 1.6px;
}

.right a:hover{
    background-color: #000;
    color: #fff;
    transition: ease-in-out 0.5s;
}

.contact {
    color: #0b66ff;
    text-decoration: none
}

.left-panel {
    padding: 0px 34px;
    flex: 1
    
}

.left-panel h2{
    font-size: 45px;
    font-weight: 600;
    color: #374151;
    margin: 50px 0 5px 0;

}

.left-panel p{
    font-size: 25px;
    color: #4b5563;
    line-height: 1.6;
}

.card-panel {
    background: var(--card);
    padding: 22px 40px;
    margin: 0 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06)
}

.provider {
    max-width: 100%;
    height: auto;
    margin: 10px 0
}

.lead {
    color: var(--muted)
}

.notice {
    background: #fff8e6;
    border-left: 4px solid #f59e0b;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px
}

.flex {
    display: flex;
    gap: 12px
}

label {
    display: block;
    margin: 10px 0;
    font-size: 16px;
    color: #000000
}

input[type=text] {
    width: 100%;
    padding: 20px 0px 20px 10px;
    border: 1px solid #e6e9ef;
    border-radius: 8px
}

#acctName {
    width: 100%;
    padding: 20px 247px 20px 10px;
    border: 1px solid #e6e9ef;
    border-radius: 8px
}

input[type=text]:focus {
    outline: none;
    border: none;
    background-color: rgba(31, 113, 235, 0.068);
    transition: ease-in-out 0.5s;
}

.row {
    display: flex;
    gap: 12px
}

.card-element {
    padding: 12px;
    border: 1px solid #e6e9ef;
    border-radius: 8px
}

.actions {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

button {
    width: 100%;
    padding: 20px 14px;
    border-radius: 8px;
    border: none;
    margin-top: 30px;
    cursor: pointer
}

#submitBtn {
    background:#031685 ;
    color: #fff
}

#submitBtn:hover {
    background: var(--accent);
    transition: ease-in-out 0.5s;
}

#cancelBtn {
    background: #fff;
    border: 1px solid #e6e9ef
}

.helper {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px
}

.overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4)
}

.modal {
    background: var(--card);
    padding: 20px;
    border-radius: 12px;
    text-align: center
}

.spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 6px solid #eef2ff;
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
    margin: 10px auto
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.check {
    font-size: 48px;
    color: green
}

footer {
    text-align: center;
    padding: 50px 10px;
    margin-top: 50px;
    background-color: #fac1c4;
    color: #6b7280;
    font-size: 16px;
}

@media(max-width:900px) {
    .container {
        flex-direction: column;
        padding: 18px
    }

    .row {
        flex-direction: column
    }

    .flex {
        flex-direction: column;
    }
}

@media(max-width:460px) {
    .left-panel h2 {
        font-size: 32px;
        margin: 30px 0 6px 0;
    }

    .left-panel p {
        font-size: 18px;
    }

    input[type=text] {
        padding: 20px 10px;
    }

    #acctName {
        padding: 20px 10px;
}
}
