body {
    margin: 0px;
    background-image: url(../images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    font-family: 'Noto Sans TC', 'Noto Sans SC', 'Noto Sans', sans-serif;
}

.brand_logo {
    position: absolute;
    top: 5vh;
    left: 10%;
    width: 13%;
}

.brand_logo img {
    width: 100%;
}

.game_logo {
    margin: auto;
    width: 50%;
    margin-top: 5vh;
}

.game_logo img {
    width: 100%;
}

.redColor {
    color: #E60012
}

.containerIn {
    width: 90%;
    margin: auto;
    position: relative;
    text-align: left;
    color: #003572;
    background-color: white;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}

.containerIn .title-row {
    width: 100%;
    color: #003572;
}

.containerIn .title {
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 20px 0px 15px 0px;
}
.containerIn .alert {
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 15px 0px 0px 0px;
    color: red;
}

.containerIn .subtitle {
    font-size: 0.7rem;
    color: #0070bd;
    font-weight: 400;
    margin-left: auto;
    position: absolute;
    top: 1.5rem;
    right: 1rem;

}

.form-table {
    margin: auto;
    padding-bottom: 2%;
    width: 85%;
}

.form-table .form-text {
    position: relative;
    color: #003572;
}

.form-table .form-text .name-title {
    text-align: left;
    font-size: 1rem;
}

.form-table .form-text .name-subtitle {
    text-align: left;
    font-size: 0.8rem;
    color: #0070bd;
    padding: 5px 0px 0px 0px;
}

.form-table .form-text .input-area {
    padding: 0.8rem 0px;
}

/* ------------------------------------------------------------------------------------------ */
.form-table .form-text .input-area input {
    width: 100%;
    font-size: 1rem;
    padding: 10px 5px;
    border: 1px solid #AAD6F4;
    background-color: #E2F0F9;
    border-radius: 21px;
    color: #0070bd;
    padding-left: 10px;
}

.form-table .form-text .input-area input::placeholder {
    color: #0070bd;
}

.bottom {
    text-align: center;

}

.hint_box {
    padding: 0px 5px;
    color: #0070bd;
    text-decoration: underline;
}

.bottom .btn {
    width: 35%;
    margin: 20px auto 0px auto;
    padding: 0px 0px 50px 0px;
    border: none;
    background: transparent;
}

.btn:hover {
    background-color: transparent !important;
}

.loading {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0px;
    z-index: 1000000;
    display: none;
}

.loader {
    width: 20vw;
    height: 20vw;
    margin-top: 40vh;
    margin-left: 40vw;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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

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

/* modal  */
.modal-content {
    color: #003572 !important;
}

.modal-body {
    background-color: #E5F2F8;
    width: 92%;
    margin: auto;
    padding: 20px;
    max-height: 70vh;
    overflow-y: scroll;
}

/* 自訂 modal-body 的 scrollbar 樣式 */
.modal-body::-webkit-scrollbar {
    width: 8px;
    background: #d1e9f6;
    border-radius: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #aad6f4;
    border-radius: 8px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #7fc1ea;
}

/* Firefox 支援 */
.modal-body {
    scrollbar-width: thin;
    scrollbar-color: #aad6f4 #d1e9f6;
}

.images_table{
    width: 100%;
    margin: auto;
    padding: 20px 0px;
}
.images_table img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding-bottom: 20px;
}