@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* ===================================================
 * Simple Membership ログインフォーム直撃カスタム
 * =================================================== */

/* 1. フォームの枠全体（白カード化・中央寄せ） */
.swpm-login-widget-form {
    max-width: 460px !important;
    margin: 30px auto !important;
    padding: 35px 30px !important;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
}

/* 2. 入力エリア（ユーザー名・パスワードのボックスを大きく） */
.swpm-login-widget-form input[type="text"],
.swpm-login-widget-form input[type="password"] {
    width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    padding: 10px 14px !important;
    margin-top: 6px !important;
    margin-bottom: 20px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    background-color: #f8fafc !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

/* 入力エリアをクリックしたとき（黄緑に光る） */
.swpm-login-widget-form input[type="text"]:focus,
.swpm-login-widget-form input[type="password"]:focus {
    border-color: #78c26d !important;
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(120, 194, 109, 0.15) !important;
}

/* 3. 「Log In」ボタン（横幅いっぱいに広げて緑色に！） */
.swpm-login-widget-form input[type="submit"] {
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    margin-top: 15px !important;
    background-color: #78c26d !important; /* サイドバーと同じ緑 */
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    box-shadow: 0 4px 6px -1px rgba(120, 194, 109, 0.2) !important;
    transition: background-color 0.2s !important;
}

/* ボタンにマウスを乗せたとき */
.swpm-login-widget-form input[type="submit"]:hover {
    background-color: #62aa58 !important;
}

/* 4. パスワードをお忘れですか？などのリンクの並び調整 */
.swpm-login-form-footer {
    margin-top: 20px !important;
    padding-top: 15px !important;
    border-top: 1px dashed #e2e8f0 !important;
    text-align: center !important;
    font-size: 14px !important;
    line-height: 2 !important;
}
.swpm-login-form-footer a {
    color: #3b82f6 !important;
    text-decoration: none !important;
    margin: 0 10px !important;
    display: inline-block !important;
}
.swpm-login-form-footer a:hover {
    text-decoration: underline !important;
}
