/* 全体のレイアウト */
.contents_wrap {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    padding: 20px;
}

.contents_inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* アカウントログインラップ */
#account_login_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

#account_login_box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

#account_login_box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* フォームの説明文 */
.form_description {
    margin-bottom: 25px;
    text-align: center;
}

.form_description p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* フォームグループ */
.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    text-align: left;
}

/* 入力フィールド */
.form_group input[type="email"],
.form_group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form_group input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* エラー状態 */
.form_group input.error {
    border-color: #dc3545;
}

.error_message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
}

/* ボタングループ */
.button_group {
    margin: 30px 0;
}

.button_group input[type="submit"] {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

.button_group input[type="submit"]:hover {
    background: #0056b3;
}

/* ログインリンク */
.login_link {
    text-align: center;
    margin-top: 20px;
}

.login_link a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.login_link a:hover {
    text-decoration: underline;
}

/* 完了メッセージ */
.complete_message {
    text-align: center;
    margin: 30px 0;
}

.complete_message p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 注意書き */
.notice {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.notice p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* コピーライト */
.check_copy {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f5f5f5;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
    #account_login_box {
        padding: 20px;
    }

    #account_login_box h2 {
        font-size: 20px;
    }

    .contents_wrap {
        padding: 10px;
    }

    .complete_message p {
        font-size: 14px;
    }
}