.body {
    background-color: #01456C;
    font-family: Barlow;
    padding: 10px;
}

.main {
    min-height: 100vh;
    height: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer {
    background-color: #FFF;
    padding: 20px;
    width: 100%;
    text-align: center;
}

.footer-copyright {
    line-height: 1;
    font-weight: bold;
    margin: 0;
}

.bg-white {
    padding: 20px;
    background-color: #FFF;
    border-radius: 16px;
}

.col-left {
    background-color: #F3F5F9;
    border-radius: 16px;
    height: 100%;
    widows: 100%;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.col-right-logo {
    display: none;
}

@media (max-width: 767px) {

    #col-left {
        display: none;
    }

    .col-right-logo {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .col-right {
        padding: 15px 30px;
    }
}


.orca-logo img {
    width: 120px
}

.col-title {
    font-size: 27px;
    line-height: 1.1em;
    padding: 30px 0;
    color: #000105;
    font-weight: 600;
}

.col-subtitle {
    color: #878991;
    line-height: 1.2em;
}

.card-depoimento {
    padding: 30px 20px;
    background-color: #2D3346;
    color: #FFF;
    border-radius: 10px;
}

.card-depoimento .informacoes-cliente {
    display: flex;
    gap: 20px;
}

.informacoes-cliente .imagem-cliente img {
    border-radius: 50px;
    height: 50px;
}

.detalhe-cliente {}

.nome-cliente {
    color: #FFF;
}

.cargo-cliente {
    color: rgba(255, 255, 255, 0.5)
}

.col-right {
    padding: 30px 15px;
}

.col-right .title {
    font-size: 27px;
    line-height: 1.4em;
    /* padding: 30px 0;  */
    color: #000105;
    font-weight: 600;
}

.form-container {

    /* height: calc(100% - 40px); */
}

.form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 10px;
    height: 100%;
}

.span-required {
    color: brown;
}

.form .form-control,
.form .form-select{
    height: 45px;
}

.btn-next {
    height: 45px;
    width: 100%;
    border-radius: 5px;
    background-color: #6AD49B;
    color: #FFF;
    border: none;
    font-weight: 600;

    justify-content: center;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.btn-next:hover {
    background-color: #54ad7d;
    color: #FFF;
}

.btn-next:disabled {
    opacity: .4;
    cursor: default;
}

.rotate {
    animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(-360deg);
    }
}


.form-control {
    /* padding: 12px; */
    border-radius: 6px;
    border: 1px solid #ccc;
    /* background-color: #fff; */
    font-size: 16px;
    color: #333;
    /* margin-bottom: 16px; */
    outline: none;
}

label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.have-account {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.have-account a {
    text-decoration: none;
    font-weight: 600;
}
.security-payment-card {
    text-align: center;
    padding: 10px;
    background-color: #F1F3F6;
    border-radius: 16px;
    width: 100%;
}

.title-security-payment {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description-security-payment {
    font-weight: 100;
}

.form-pix-group {
    width: 100%;
    margin: 0 40px;
}

.terms-plan-renew {
    font-size: 12px;
    line-height: 1.25;
}


/* STEP 04 */

.col-left-container {
    height: 100%;
    padding-top: 50px;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* height: 100%; */
    justify-content: center;
}

.card-payment-method {
    background-color: #FFF;
    border-radius: 16px;
    /* border: solid 1px #cdcdcd; */
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: .4s;
}

.card-payment-method.active {
    background-color: rgba(244, 244, 244, 1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.card-payment-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.icon-credit-card {
    /* width: 40px; */
    /* background-color: #eee; */
    border-radius: 50px;
    max-width: 48px;
    max-height: 48px;
    padding: 10px;
}

.icon-credit-card img {}

.card-payment-title {
    /* font-weight: bold; */
    font-size: 18px;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.25;
}

.card-payment-subtitle {
    /* font-weight: 400; */
    color: #737373;
    font-size: 14px;

    font-weight: 400;
    line-height: 1.25;
}

.color-green {
    color: #39b54a;
}


@media screen and (max-width: 990px) {
    .col-left {
        padding: 15px 10px;
    }

    .col-right {
        padding: 15px 30px;
    }
}

.paymet-methods-inline {
    display: flex;
    gap: 10px;
}



.paymet-methods-inline .card-payment-method:has(:checked) {
    border: solid 1px #0d6efd;
}

.paymet-methods-inline .icon-credit-card {
    padding: 0;

}

.method-payment-input{
    display: flex;
    gap: 5px;
    line-height: 1;
}

.paymet-methods-inline .icon-credit-card img {
    height: 35px !important;
}

.orca-logo {
    margin-bottom: 20px;
}

.title-column-plan {
    padding: 30px;
    font-weight: bold;
    font-size: 20px !important;
    color: var(--tx-primary-color);
    border-bottom: solid 1px var(--bg-border);
}

.information-column-plan {
    padding: 30px;
    border-bottom: solid 1px var(--bg-border);
}

.plan-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.plan-column-title {
    color: var(--tx-primary-color);
    font-weight: bold;
}

.plan-column-subtitle {
    color: var(--tx-sencudary-color);
    font-weight: lighter;
    font-size: 14px;
}

.plan-column-information {
    font-weight: bold;
}

.values-column-plan {
    padding: 30px;
}

.border-dashed {
    border-bottom: 1px dashed #C3C396;
    display: flex;
    flex: 1 1 0%;
    margin: 0px 10px 10px 10px;
}

.subtotal {
    color: var(--tx-primary-color);
    font-weight: lighter;
}

.discount {
    font-weight: lighter;
    color: var(--tx-primary-color);
}

.tax {
    font-weight: lighter;
    color: var(--tx-primary-color);
}

.total {
    color: var(--tx-primary-color);
    font-weight: bold;
}

/* END STEP 04 */
