.obc-calculation-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 2px dashed #1768e3;
    color: #1768e3;
    margin: 1rem 0;
    padding: 1rem 3rem;
    border-radius: 0.3rem;
}

.obc-calculation-text {
    height: 100%;
}

.obc-calculation-output {
    margin: 0;
    line-height: 1;
    margin: 0 1rem 0 0;
    color: black;
}

.obc-register-btn-container {
    height: 100%;
}

.obc-register-btn {
    padding: 0.5rem 1rem;
    background: #1768e3;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 10px;
}

.obc-register-btn:hover {
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .obc-calculation-banner {
        padding: 1rem 2rem;
    }

    .obc-calculation-output {
        font-size: 87%;
        font-weight: 500;
    }

    .obc-calculation-text {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .obc-register-btn-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .obc-register-btn {
        padding: 0.3rem 0.7rem;
        font-size: 0.9rem;
    }

    
}


/******************** OBC INVOICE BANNER ********************/
.obc-invoice-banner {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 1.3rem;
    margin-bottom: 1rem;
    width: 100%;
    height: fit-content;
    background: white;
    border: 2px dashed #0071a7;
    border-radius: 5px;
}

.obc-invoice-banner .info-container {
    width: 100%;
    color: black;
}

.obc-invoice-banner .btn-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: start;
    width: 100%;
}

.btn-container .signup-btn,
.btn-container .info-btn {
    text-align: center;
    background: #0071a7;
    color: white;
    padding: 0.4rem .8rem;
    border-radius: 5px;

    transition: background-color 160ms ease, transform 120ms ease;
}

.btn-container .info-btn {
    background: #3991b9;
}

.btn-container .signup-btn:hover,
.btn-container .info-btn:hover {
    background: #005e89;
    transform: translateY(-1px);
}

.btn-container .info-btn:hover {
    background: #56a7c9;
}

@media (max-width: 768px) {
    .obc-invoice-banner .btn-container {
        justify-content: center;
    }
}