body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
    background-color: #DAF1F7;
    /* 主背景色改為深藍色 */
    color: #000000;
    font-family: 'docs-Roboto';
    font-weight: 400;
    font-size: 12pt;
    line-height: 1.5;
}

.logo {
    /*圓角邊框 */
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;


}

.logo img {
    width: 60%;
    margin: 0 auto;
    margin-left: 20%;
    padding: 20px;

}


form {
    width: 100%;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



p {
    text-align: center;
    color: #f1acac;
}

small {
    font-size: 11pt;

}


label,
input,
select {
    display: block;
    width: 100%;
    margin-bottom: 1px;
    font-size: 1em;
    color: #111111;
    /* padding: 10px; */
}



p {
    font-size: 1em;
    text-align: center;
    color: #555;
}



.form-control {
    border-radius: 0;
    background-color: #FFFFFF;
    /* 表單輸入框背景改為藍色 */
    color: #134B70;
    /* 表單文字顏色為白色 */
    border: 1px solid #FFFFFF;
}




.btn {
    border-radius: 0;
    background-color: #508C9B;
    /* 按鈕背景色為黃綠色 */
    color: #FFFFFF;
    /* 按鈕文字顏色為深藍色 */
    font-weight: bold;
}



img {
    margin-top: 15px;
    margin-bottom: 15px;
}



.map-container {
    width: 100%;
    height: auto;
    max-width: 650px;
    /* border: 1px solid #d0da4e;。 */
    padding-top: 10px;
}

@media screen and (max-width: 768px) {
    .map-container {
        max-width: 95%;
    }

}



.form-control {
    background-color: #FFFFFF;
    color: #134B70;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
}



.btn {
    background-color: #48B8D8;
    color: #FFFFFF;
    border-radius: 5px;
    width: 60%;
    margin-left: 20%;
    text-align: center;
    padding: 10px;
}

.d-flex .btn {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    padding: 10px;
    text-align: center;

}


.alert {
    background-color: #F65555;
    color: #FFFFFF;
    font-size: 1em;
}







h2 {
    text-align: center;
}

h4 {
    font-weight: 400;

}

h5 {
    font-weight: 400;
    font-size: 11pt;
}

.close h3 {
    color: #111111;
}

.close h2 {
    color: #111111;
}

.close .frame {
    margin-top: 100px;
    background-color: white;
    padding: 10px 0 10px 0;
    width: 80%;
    text-align: center;
    margin-left: 10%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.loading-box {
    display: none;
    margin-top: 20px;
    text-align: center;
}

.spinner {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #134B70;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-box span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #134B70;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-group-inline {
    display: flex;
    gap: 10px;
}

.form-group-inline>div {
    flex: 1;
}


.section {
    display: block;
}