/* #stakeholder_login_wrapper {
    width: 40%;
    min-width:300px;
    margin: auto;
    text-align: center;
    margin-top: 200px;
    margin-bottom: 200px;
    font-size: 1.8rem;
    border-color: #2F68C1;
    border-width: 1px;
    padding: 2rem;
}
#stakeholder_login_wrapper label{
    padding-right: 1rem;
    font-weight: normal;
    display: block;
}
#stakeholder_login_wrapper p input {
    background-color: rgb(158, 194, 255);
    border-style:none;
}
h2{
    text-align: center;
    font-size: 3rem;
} */

/* フォームの外枠 */
#stakeholder_login_wrapper {
    background: rgb(220 240 249);
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); */
    width: 100%;
    max-width: 360px;
    margin: auto;
    margin-bottom: 8rem;
}

/* 見出し（h2）の調整 */
h2 {
    color: #334155;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

#explain{
    text-align: center;
    margin: 10px auto 30px;
    max-width: 360px;
}

/* 入力エリアのレイアウト */
#stakeholder_login_form p {
    margin-bottom: 20px;
}

/* ラベルのデザイン */
label {
    display: block;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

/* 入力フォーム（input） */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box; /* 幅の計算をパディング込みに */
    font-size: 16px; /* モバイルでのズーム防止 */
    transition: all 0.2s ease;
    background-color: #f8fafc;
}

input:focus {
    outline: none;
    border-color: #7dd3fc; /* ベースカラーに近い青 */
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(220, 240, 249, 0.5);
}

/* ログインボタン */
.stakeholder_submit {
    margin-top: 30px;
}

button[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: #0ea5e9; /* アクセントの青 */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #0284c7;
}

button[type="submit"]:active {
    transform: translateY(1px);
}

.error{
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: red;
}




