/* リセットCSS */
* {
    box-sizing: border-box;
}

/* 全体のスタイル */
body {
    font-family:cursive;
    margin: 0;
    padding: 0;
}

/* スクロールバーを非表示にする */
body::-webkit-scrollbar {
    display: none;
}

.background {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: background-image 1s ease;
}

/* 各ページ */
.page {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* 1ページ目 */
.page1 {
    position: relative;
}


/* 2ページ目 */
.page2 {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}



/* 矢印のスタイル */
.arrow {
    position: absolute;
    width: 60px;
    height: auto;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

/* 矢印のクリック時のスタイル */
.arrow:active {
    transform: translateX(-50%) scale(0.98);
    transition: 0.1s;
}


/* ログインボックスのスタイル */
.login-box {
    background-color: white;
    font-size: 20px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    width: 500px;
    height: 500px;
}

/* ログインボックス内の要素のスタイル */
input {
    font-family: cursive;
    font-size: 16px;
    margin-top: 5px;
    width: 100%;
    height: 45px;
    border-radius: 8px;
}

input::placeholder {
    font-family: cursive;
    color: #aaa;
}

/* ログインボックス内の要素のスタイル */
button {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    width: 100%;
    height: 45px;
    background-color: cyan;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* ボタンのクリック時のスタイル */
button:active {
    transform: scale(0.98);
    transition: 0.1s;
    border: none;
}