/* ============================================================
   新入生専用ページ ログイン画面（Password Protected）デザイン
   PDF「2027新入生HP変更」②パスワードページの改修 に準拠
   ============================================================ */

/* ページ全体：桜（薄ピンク）背景 */
html {
    overflow-x: hidden;
}

body.login {
    background-color: #fce4ec;
    background-image: none;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    overflow-x: hidden;
}

/* デフォルトのWordPressロゴ（サイト名テキスト）を非表示 */
.login h1,
#login h1#password-protected-logo {
    display: none;
}

#login {
    width: 92%;
    max-width: 460px;
    padding: 6vh 0 40px;
    margin: 0 auto;
}

/* ---- 大学ロゴ＋見出しブロック ---- */
.nuhw-login-header {
    text-align: center;
    margin-bottom: 26px;
}

.nuhw-login-logo {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto;
}

.nuhw-login-divider {
    position: relative;
    width: 100%;
    border: 0;
    border-top: 1px dashed #e6a9c3;
    margin: 22px auto 18px;
}

.nuhw-login-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    background: #d94f83;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.nuhw-login-title {
    margin: 0;
    color: #d94f83;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ---- ログインフォーム（白カード） ---- */
#loginform {
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 26px 24px;
    margin: 0 auto;
}

#loginform label {
    color: #333;
    font-size: 14px;
}

/* 入力欄（目のアイコンの位置はプラグイン既定を維持するため余白は上書きしない） */
#loginform .input,
#loginform input[type="password"],
#loginform input[type="text"] {
    border: 1px solid #cfcfcf;
    border-radius: 6px;
}

#loginform .input:focus,
#loginform input[type="password"]:focus,
#loginform input[type="text"]:focus {
    border-color: #d94f83;
    box-shadow: 0 0 0 2px rgba(217, 79, 131, 0.2);
    outline: none;
}

/* ---- ログインボタン（青・右寄せ） ---- */
.login .button-primary,
#wp-submit {
    float: right;
    background: #2f4fd8 !important;
    border-color: #2f4fd8 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-weight: 700;
}

.login .button-primary:hover,
.login .button-primary:focus,
#wp-submit:hover,
#wp-submit:focus {
    background: #2340c0 !important;
    border-color: #2340c0 !important;
}

/* ---- パスワードの案内文 ---- */
.nuhw-login-note {
    text-align: center;
    color: #d94f83;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 26px;
}

.nuhw-login-note__flower {
    margin: 0 6px;
}

/* ---- エラー・メッセージ ---- */
.login #login_error,
.login .message {
    border-radius: 6px;
    margin-bottom: 16px;
}

/* ---- レスポンシブ ---- */
@media screen and (max-width: 480px) {
    .nuhw-login-logo {
        max-width: 280px;
    }
    .nuhw-login-title {
        font-size: 18px;
    }
    #loginform {
        padding: 22px 18px;
    }
}
