html {
    font-size: 16px;
}

body {
    font-size: 1rem; /* Default font on large screens (16px) */
}

h1 {
    font-size: 2rem; /* 32px on large screens */
}

/* Adjust fonts for mobile devices */
@media (max-width: 768px) {
    html {
        font-size: 14px; /* Root font size decreases to 14px */
    }

    body {
        font-size: 1.5rem; /* Body adjusts automatically to 14px */
    }

    h1 {
        font-size: 1.5rem; /* Reduce heading size to 21px */
    }
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    background-color: #006f62;
    border-radius: 8px 8px 0 0;
    width: 100%;
}

.text-container {
    margin-bottom: 24px;
}

.title-txt {
    color: #fff;
}

#loginForm {
    min-width: 30%;
    max-width: 100%;
}
/* .form {
   min-width: 50%;
    max-width: 100%;
} */

.col-form-label {
    padding-left: 0 !important;
}

.form-input {
    padding-left: 0 !important;
}

.form-btn {
    width: 30%;
}

.btn {
    background-color: #006f62 !important;
    color: #fff !important;
    margin-top: 20px;
    width: 100%;
}

.footer {
    background-color: #006f62;
    font-size: 12px;
    margin-top: 100px;
    width: 100%;
}

.list-container {
    display: none;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    gap: 24px;
    min-width: 30%;
    max-width: 100%;
}

.list-item {
    position: relative;
    background-color: #006f62;
    border: 1px solid #006f62;
    border-radius: 12px;
    /* max-width: 100%;
    min-width: 50%; */
    cursor: pointer;
}

.icon {
    width: 25px;
    height: 25px;
    background-color: #666666;
    background-image: url(images/icons-18-white.png);
    background-position: -784px 2px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    border-radius: 50%;
}

.list-txt {
    font-weight: bold;
    color: #fff;
    margin-left: 3rem;
}

.modal-content-title {
    font-weight: bolder;
}

.modal-content-txt {
    padding-left: 1em;
}

/* .accordion-button:not(.collapsed) {
    background-color: #006f62 !important;
    color: #fff !important;
} */
.accordion-button:focus {
    box-shadow: none !important;
}

.cn-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: "Microsoft JhengHei", "PingFang TC", sans-serif;
}