.section-contributor {
    background: var( --blue-grad, linear-gradient(180deg, #bfe7f1 0%, #f8fdff 27.51%));
    /*display: flex;*/
    /*flex-direction: column;*/
    /*flex-wrap: wrap;*/
    /*align-items: center;*/
    /*align-content: center;*/
    /*justify-content: space-between;*/
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
}

.modal-content {
    border-radius: 15px;
    border: none;
    padding: 20px;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title {
    font-weight: 700;
    color: #333;
}

.req-csr-form label,
.upload-csr-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    display: block;
}

.req-csr-form label::after {
    content: " *";
    color: #dc3545;
}

.req-csr-form {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.req-csr-input,
.req-csr-select,
.req-csr-area {
    border-radius: 8px;
    background: #F5F5F5;
    padding: 10px 15px;
    border: 1px solid transparent;
    width: 100%;
    font-size: 14px;
    color: #000;
    transition: all 0.3s;
}

.req-csr-input:focus,
.req-csr-select:focus,
.req-csr-area:focus {
    outline: none;
    background: #fff;
    border-color: #ced4da;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.req-csr-area {
    min-height: 120px;
    resize: vertical;
}

.form-check-label {
    font-size: 13px;
    color: #111;
}

.form-check-input:checked {
    background-color: #333;
    border-color: #333;
}

.btn-submit-request {
    background-color: #00bad1;
    /* Warna Cyan/Biru Wayang */
    border: none;
    color: white;
    padding: 7px;
    border-radius: 8px;
    font-weight: 600;
    width: 40%;
    margin-top: 20px;
}

.btn-submit-request:hover {
    background-color: #00a0b5;
    color: white;
}

.btn-submit-csr {
    display: flex;
    justify-content: center;
}

.cont-modal-desc {
    padding: 0 20px;
    margin-top: 10px;
}

.cont-modal-desc h6 {
    color: #111;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.cont-modal-desc p {
    color: #333;
    font-family: Lato;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .btn-submit-request {
        width: 30%;
    }
}