html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    overflow-x: hidden;
    Font-family: Roboto, Helvetica Neue, sans-serif;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: transparent;
    color: white;
    font-weight: 700;
    padding: 20px;
    border-radius: 5px;
    font-family: 'Poppins';
    text-align: center;
}



.div1 {
    margin-top: 56px;
    width: 253px;
    box-sizing: border-box;
    height: 100vh;
    color: #0066a2;
    font-size: 14px;
    font-weight: 600;
}

.p1 {
    margin: 24px 20px;
    box-sizing: border-box;
}


.p2 {
    margin: 2px 20px;
    box-sizing: border-box;
    color: #94a3b8;
    font-size: 11px;
    margin-bottom: 20px;
}

.div2 {
    height: 56px;
    background: #00649c;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0;
    display: flex;
    align-items: center;
    Font-size: 20px;
    Font-style: normal;
    Font-weight: 500;
    Font-family: Roboto, Helvetica Neue, sans-serif;
    color: white;

    box-sizing: border-box;
}

.div2 .left {
    position: absolute;
    left: 20px;
}

.div2 .center {
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
}

.div3 {
    background: rgb(173, 217, 228);
    background: linear-gradient(to bottom, #AED8EC 5%, #D5EAF5 30%, #FFF 100%);
    width: calc(100% - 220px);
    position: absolute;
    left: 253px;
    top: 56px;
    bottom: 0;
}



.ps {
    color: #00649C;
}

.buttons {
    background-color: rgb(0 100 156);
    width: 180px;
    height: 52px;
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
    border-radius: 12px;
    font-size: 14px;
    box-sizing: border-box;
    margin-top: 15px;
}

#divcardwhite {
    background-color: #f8fdfd;
    width: 867px;
    height: auto;
    padding: 20px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    margin-top: 20px;

    border-radius: 6px;

}

.inputs-wrapper {
    display: flex;
    width: 100%;
    gap: 10px;
    box-sizing: border-box;
}

input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
    height: 54px;
    background: #F2F9FC;
    border-radius: 3px;
    border: 1px solid #000;
}

.bt {
    width: 89%;
    height: 50px;
    margin: -13px 20px;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: white;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 15px;
    cursor: pointer;
    word-break: break-all;
    text-align: left;
    padding-left: 0px;
}

.tam {
    width: 60%;
}

svg {


    margin-right: 30px;
}

.bt:hover {
    background: rgb(240, 239, 239);
}

.ionicon {
    width: 25px;

    height: 25px;
}

.ion-color-danger {
    fill: none;
    stroke: #eb445a;

    stroke-width: 24px;
    color: #eb445a;

}

@media (max-width: 768px) {
    #divcardwhite {
        flex-direction: column;
        width: 95%;
        height: auto;
        align-items: stretch;
    }

    .inputs-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .div1 {
        display: none;

    }

    .div2 .center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .buttons {
        background-color: rgb(0 100 156);
        width: 180px;
        height: 52px;
        color: white;
        border: none;
        cursor: pointer;
        outline: none;
        border-radius: 12px;
        font-size: 14px;
        box-sizing: border-box;
        margin-top: 0px;
    }

    .div2,
    .div3 {
        width: 100%;
        left: 0;
    }

    .div2 .left {
        display: none;
    }


}

.flutuanteinputs {
    display: flex;
    position: relative;
    width: 100%;
    margin: 0px 0;
    gap: 10px;
}

@media (max-width: 768px) {

    .flutuanteinputs {
        display: flex;
        position: relative;
        width: 100%;
        margin: 10px 0;
        gap: 10px;
    }
}

.flutuanteinputs input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
    height: 54px;
    background: #FFF;
    border-radius: 3px;
    border: 1px solid #9e9e9e;
    outline: none;
}

.flutuanteinputs input:focus {
    border: 1px solid #00649c;
}

.flutuanteinputs input:hover {
    border: 1px solid #00649c;
}

.flutuanteinputs label {
    position: absolute;
    top: 50%;
    left: 8px;
    font-size: 16px;
    color: #999;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.flutuanteinputs input:focus+label,
.flutuanteinputs input:not(:placeholder-shown)+label {
    top: -0px;
    left: 8px;
    font-size: 12px;
    color: #00649c;
    background: white;
    padding: 5px;
}