/* ================================
   共通 layout
================================ */
.inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    align-items: center;
    width: 100%;
}

/* ================================
   パスワードリセット 専用
================================ */

/* 説明文 */
.desc {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* フォーム外枠を中央 & 幅制限 */
.forgot-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

/* ラベル */
.forgot-form label {
    display: block;
    margin-bottom: 8px;
}

/* Email インプット */
.forgot-form input[type="email"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* ボタンエリア */
.forgot-form .btn-area {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* ボタン */
.btn {
    background-color: inherit;
    padding: 8px 2em;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 15px;
    margin: 25px auto;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #000;
    border-color: #000;
    cursor: pointer;
}

/* エラー */
.valideErrorMessage,
.dangerAlert {
    font-size: 12px;
    color: #C00;
}
