/* static/css/login.css */
.login-modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.login-modal.hidden {
    display: none;
}

/*<!-- 背景遮罩 -->*/
.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明黑 */
    z-index: -1; /* 放在 modal-content 背後 */
}

.login-modal-content {
    background-color: #1c1c1e;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 360px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
}

.login-modal-content input {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #2c2c2e;
    color: #fff;
}

.login-modal-content button {
    width: 100%;
    padding: 10px;
    background-color: #3b82f6;
    border: none;
    border-radius: 6px;
    color: white;
    margin-top: 10px;
    cursor: pointer;
}

.login-close-btn {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 24px;
    cursor: pointer;
}

.login-signup-text {
    margin-top: 12px;
    font-size: 14px;
}