@font-face {
    font-family: WM_Font;
    src: url(../asset/font/wmfont-regular.otf);
}

* {
    font-family: WM_Font, Courier;
    scroll-behavior: smooth;
}
body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.login-container label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #555;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #4a90e2;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #357ab8;
}

.error-message {
    color: #E40046;
    margin-bottom: 15px;
    padding: 12px 24px;
    text-align: center;
    border-radius: 5px;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeOut 1.2s ease-in-out 1.5s forwards;

}
.show-password {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
}

.show-password input {
    margin-right: 5px;
}
.banner {
    width: 100%;
    height: 65px;
    margin: auto;
    display: block;
    background-color: #FFCD00;
    border-radius: 10px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 60%;
    border-radius: 8px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
        #login-button {
        display: none;
    }

    .error-message {
        background-color: #E40046;
        color: white;
        padding: 10px;
        border: 1px solid #f5c2c7;
        border-radius: 5px;
        margin-bottom: 15px;
        text-align: center;

    }

        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
                height: 0;
                padding: 0;
                margin: 0;
            }
        }

@media (max-width: 768px) {
    td{
        font-size: small;
    }

}

@media (max-width: 480px) {

}


