/* No.40 ログイン画面のカスタマイズ */
/* 2025.4.28 S.Kisanuki    */
/* ログイン画面の背景画像を設定 */
body.login {
    background: url('/files/img/PIXNIO-1142137-750x500-1.jpg') no-repeat center center;
    background-size: cover;
}
/* ログインフォーム全体のデザイン */
#login {
	width: 280px ;
	height: 480px ;
    background-color: white; /* フォームの背景色 */
    color: black; /* フォーム内のテキストカラー */
	margin-top: 15px; 
    padding: 30px;
    border-radius: 20px;  /* 角の丸み */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */ 
}
/* ログインフォーム */
#login form {
	margin-top: 0px; 
    border: none !important; /* 内側の枠線を削除 */
    box-shadow: none !important; /* 影も削除 */
}
/* ロゴの配置 */
.login h1 a {
    background-image: url('/files/img/login-logo-01.png') !important;
    background-size: contain;
    width: 200px; /* ロゴの幅 */
    height: 100px; /* ロゴの高さ */
    display: block; /* ブロック要素として表示 */
    margin: 0 auto 10px auto; /* 中央揃え */
}
/* 通常メッセージ */
.login-message {
    position: relative;
    margin-top: 10px; /* メッセージ間の余白を確保 */
/*    top: 0px;  ロゴの下に配置 */
    left: 50%; 
    transform: translateX(-50%); /* 中央 */
    padding: 5px;
}
/* ログインエラーメッセージ */
.custom-error {
/*  position: absolute; */
/*	top: 200px; */
    position: relative;
	top: 10px;
/*    padding: 3px; */
/*    border: 2px solid #ff5a5a; */
/*    text-align: center;
/*    border-radius: 5px; */
    color: #d8000c;
/*    background-color: #ffdddd; */
}
/* ユーザー名とパスワード入力フィールド */
.login form input[type="text"],
.login form input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc; 
    border-radius: 5px; 
    background-color: #fff;
}
/* Remember Me チェックボックス */
.login form input[type="checkbox"] {
    margin-right: 5px;
}
/* ログインボタン */
.login form input[type="submit"] {
	margin-top: 15px;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    background-color: #448CC3; /* ボタンの色 */
    color: white; /* ボタンの文字色 */
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/* ログインボタン（ホバー時） */
.login form input[type="submit"]:hover {
    background-color: #4aa3df;
}
/* 規定の不要な項目を非表示 */
/* 「パスワードをお忘れですか」「～へ戻る」「言語スイッチャー」 */
.login #nav,
.login #backtoblog,
.login .language-switcher {
    display: none;
}
