@charset "utf-8";

/* ============================================================
   ログインページ：Zen丸ゴシック・厚み・共通デザイン統一版
   ============================================================ */

/* 1. ページ全体のベース */
.custom-login-container {
    width: 100%;
    max-width: 440px; /* 少し広げて安定感を */
    margin: 0 auto;
    padding: 160px 20px 80px; /* ヘッダー分を確保 */
    font-family: 'Zen Maru Gothic', sans-serif !important;
}

/* 2. ログインボックス（ガラス質感＋厚み） */
.login-box {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid #fff !important;
    padding: 60px 40px;
    border-radius: 35px; /* 角丸を強める */
    box-shadow: 0 15px 35px rgba(93, 64, 55, 0.06) !important;
    text-align: center;
    position: relative;
}

/* タイトル（最大の厚み900） */
.login-title {
    font-size: 26px;
    font-weight: 900 !important;
    color: #e67e22; /* たんぽぽオレンジ（色味を統一） */
    margin-bottom: 15px;
    line-height: 1.4;
}

.login-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 700 !important; /* 700で厚みを出す */
}

/* 3. 入力エリア（厚みのある角丸） */
#custom-login-form label {
    display: block;
    text-align: left;
    font-size: 15px;
    font-weight: 900 !important; /* ラベルはクッキリと */
    color: #4a3728;
    margin-bottom: 10px;
}

#custom-login-form .input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #f0f0f0 !important;
    border-radius: 15px !important;
    background-color: #fafafa !important;
    font-size: 16px;
    font-family: inherit;
    font-weight: 700 !important; /* 入力文字の厚み */
    margin-bottom: 25px;
    transition: all 0.3s;
    box-sizing: border-box;
}

#custom-login-form .input:focus {
    border-color: #08A66C !important; /* 園の緑色に統一 */
    outline: none;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(8, 166, 108, 0.1);
}

/* 4. ログインボタン（厚みと存在感） */
#login-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 900 !important;
    color: #fff;
    background-color: #08A66C; /* 共通の緑色へ */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(8, 166, 108, 0.2);
    margin-top: 10px;
}

#login-submit:hover {
    background-color: #068a5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(8, 166, 108, 0.3);
}

/* 5. エラー表示 */
.login-error {
    color: #d9534f;
    background-color: #fdf2f2;
    border: 2px solid #f8d7da;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 700 !important;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .custom-login-container {
        padding-top: 120px;
    }
    .login-box {
        padding: 45px 25px;
        border-radius: 25px;
    }
    .login-title {
        font-size: 22px;
    }
}