/* 全体リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Yusei Magic", sans-serif;
}

/* 画面全体 */
body {
    background: url(../bg_icon/ribbon_background.png);
    background-size: cover;
    background-attachment: fixed;
    /*背景をスクロールしてもそのまま表示*/
    z-index: 1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse !important;
}

/* ログイン枠 */
.main_content {
    background: #ffffff;
    width: 320px;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* input 共通 */
.main_content input {
    width: 100%;
    padding: 12px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

/* フォーカス時 */
.main_content input:hover {
    outline: none;
    border-color: #ff5b5b;
}

/* ボタン */
.main_content button {
    width: 100%;
    padding: 12px;
    background: #ff5b5b;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

/* hover */
.main_content button:hover {
    background: #d64848;
}

/* 押下時 */
.main_content button:active {
    transform: scale(0.95);
}

#loginBtn {
    margin-top: 10px;
}	