body {
    background:  
        /* 中間上方主曼陀羅 */ url("/img/bg-pic.png") center -100px/800px
            no-repeat,
        /* 左側下方裝飾曼陀羅 - 向左下翻轉 */ url("/img/bg-pic.png") 5% 70%/400px
            no-repeat,
        /* 右側下方裝飾曼陀羅 - 向右下翻轉 */ url("/img/bg-pic.png") 95% 70%/400px
            no-repeat;
    background-color: #fff8f3;
    min-height: 100vh;
    position: relative;
}

/* 左側裝飾條 */
body::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 30px; /* 可以調整寬度 */
    height: 100vh;
    background: url("/img/bg-left.png") repeat-y;
    background-size: contain;
    z-index: 10;
}

/* 右側裝飾條 */
body::after {
    content: "";
    position: fixed;
    right: 0;
    top: 0;
    width: 30px; /* 可以調整寬度 */
    height: 100vh;
    background: url("/img/bg-right.png") repeat-y;
    background-size: contain;
    z-index: 10;
}

.donate-form {
    background: rgba(255, 255, 255);
    border: 1px solid #9f9157;
    margin-top: 50px;
    width: 50%;
    min-width: 300px;
    align-self: center;
}


@media (max-width: 768px) {
    .donate-form > div:not(:first-child) {
        padding-top: 50px;
    }
}

.donate-inside-border {
    border: 1px solid #9f9157;
    padding: 0 10%;
    margin: 8px;
    position: relative;
}

.img-class {
    position: absolute;
    width: 50%;
    top: 1%;
    left: 26%;
    z-index: 10;
}

.finish-img-class {
    position: absolute;
    width: 30%;
    height: 25%;
    top: -10%;
    left: 36%;
    z-index: 10;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-25 {
    margin-top: 25px;
}

.btn-black {
    background: #333333;
    color: #cfc187;
    width: 100%;
    height: 45px;
    margin-top: 50px;
}

.btn-back-donate {
    margin-bottom: 40px;
    margin-top: 30px;
}

.thanks-text {
    text-align: center;
    font-size: 24px;
    margin-top: 50px;
}

label {
    color: #65571b;
}

.form-control {
    border-color: #cfcfcf;
}

.connection-text {
    font-size: 18px;
}

.language {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 70px;
}
.title-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 146px;
    background-color: #980026;
    border: 2px solid #9f9157;
    z-index: 10;
    overflow: hidden;
}

.title-inner {
    width: 100%;
    height: 100%;
    color: #000;
    font-size: 48px;
     /* 其他屬性保持不變 */
    font-family: "DFKai-SB", "標楷體", "華康中黑體", sans-serif;
    font-weight: 900; /* 極粗體 */
    /* 添加以下屬性來置中 */
    display: flex;
    justify-content: center;  /* 水平置中 */
    align-items: center;      /* 垂直置中 */
    letter-spacing: 40px; /* 增加字距 */
    padding-left: 20px;       /* 補償 letter-spacing 造成的右邊偏移 */
}


/* 角落裝飾 */
.title-inner::before,
.title-inner::after,
.title-inner > :first-child::before,
.title-inner > :first-child::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #9F9157;
}

/* 左上角 */
.title-inner::before {
    top: 15px;
    left: 15px;
    transform: rotate(-45deg);
}

/* 右上角 */
.title-inner::after {
    top: 15px;
    right: 15px;
    transform: rotate(45deg);
}

/* 左下角 */
.title-inner > :first-child::before {
    bottom: 15px;
    left: 15px;
    transform: rotate(45deg);
}

/* 右下角 */
.title-inner > :first-child::after {
    bottom: 15px;
    right: 15px;
    transform: rotate(-45deg);
}