﻿/*
ログイン画面用
*/
        body.login {
            background: #f7f7f7;
        }

        /* ヘッダー風 */
        .custom-login-header {
            background: #fff;
            padding: 20px 0;
            text-align: center;
            border-bottom: 1px solid #e5e5e5;
        }

        .custom-login-logo {
            height: 50px;
        }

        /* 2カラム全体 */
        .custom-login-wrapper {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 0;
            margin: 0 auto;
        }

        /* 左：ログインフォーム */
        .custom-login-left {
            width: 50%;
        }

        /* 右：画像エリア */
        .custom-login-right {
            width: 50%;
            text-align: center;
            padding: 0;
            overflow: hidden;
        }
        .custom-side-image {
            height: 100%;
            object-fit: cover;
        }

       /* ログインフォーム本体 */
        #login {
            padding: 0 !important;
            width: 100% !important;
            max-width: 400px;
            margin: 50px auto; 
        }

        #login h1 {
            display: none !important;
        }

        #login form {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #ddd;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            width: 100% !important;
            display: flex;
            flex-direction: column;
        }

        #login .dashicons-visibility:before {
            color: #000;
        }

        #wp-submit {
            background: #e24545 !important;
            border-color: #e24545 !important;
            padding: 10px 0 !important;
            margin-top: 10px;
            border-radius: 5px !important;
            font-size: 16px !important;
            float: none;
            width: 100%;
        }

        /* フッター風 */
        .custom-login-footer {
            background: #fff;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            font-size: 13px;
            color: #666;
            border-top: 1px solid #e5e5e5;
        }

        /* スマホ用：1カラムに落とす */
        @media (max-width: 768px) {
            .custom-login-wrapper {
                flex-direction: column;
                flex-direction: column-reverse;
            }
            .custom-login-left {
                width: 70%;
            }
            .custom-login-right {
                width: 100%;
            }
            .custom-side-image {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
