.rensaBody {
    background-color: #38c6e6;
    font-family: Poppins, sans-serif;
}

.rensaHeader {
    color: #3387dd;
    font-weight: 700;
    margin-top:42px;
}

.rensaCard {
    background: white;
    text-align: center;
    color: black;
    max-width: 82%;
    margin: 30px auto; /* Centers on larger screens */
    padding: 24px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    min-height:600px;
}

.btn {
    max-width:100%;
}

.btn-rensa {
    color: #fff;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 20px;
    background-color: #3387DD;
    max-width: 100%;
}

.btn-rensa-yellow {
    color: black;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 20px;
    background-color: #e7f539;
}

.btn-secondary:disabled {
    color: #000000 !important;
    background-color: #d9d9d9;
    border-color: #6c757d;
    font-weight: 400;
}

.rensaProgressBar > .progress-bar {
    background: linear-gradient(to right, #2d8fe1, #04c7fb);
}

.rensaProgressBar {
    border-radius: 16px;
    height: 25px;
    border: 1px solid #c1c1c18f;
}

@media (min-width: 400px) {
    .rensaCard {
       max-width: 370px;
    }
}

.rensaCard p {
    font-size: 13px;
}

.rensaBtn {
    width: 100%;
    max-width: 100%;
}

.rensaInput {
    border-radius: 60px;
}

.large-checkbox {
    width: 20px;
    height: 20px;
    transform: scale(1.2);
}


@media (max-width: 340px) {
    .rensaCard {
        max-width: 110%;
        margin: 0px;
        border-radius:0px;
        padding:16px;
    }
}


.rensaBody .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.rensaBody .modal-content {
    background-color: #007bff;
    color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.rensaBody .modal-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.rensaBody .close-modal {
    position: absolute;
    right: 10px;
    top: 5px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.rensaBody .modal-btn {
    background-color: white;
    color: #007bff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
}