/*
Inazumaweb2 Plugin front css
*/

#login #loginform {
    border-radius: 8px;
    box-shadow: 0 4px 8px #eef3fe0d, 0 -4px 8px #eef3fe0d !important;
    box-sizing: border-box;
    border: solid 2px #3088f2;
}



/* 背景の暗いオーバーレイ */
.front-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    /* 初期状態は非表示 */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 中央のコンテンツボックス */
.front-overlay-content {
    width: 90vw;
    height: 90vh;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: auto;
}

/* 閉じるボタン */
.front-close-btn {
    float: right;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
}