/* ============================
   Reset Password Page
   ============================ */

.reset-wrapper {
    max-width: 420px;
    margin: 60px auto;
    padding: 0 20px;
}

.reset-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.reset-desc {
    text-align: center;
    color: #444;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 32px;
}

/* ラベル */
.reset-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* 入力欄 */
.reset-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

/* ボタン */
.reset-btn {
    width: 100%;
    padding: 14px 0;
    margin-top: 28px;

    background: #000;
    color: #fff;
    font-weight: var(--btn-font-weight);
    font-size: var(--btn-font-size);
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
}

.reset-btn:hover {
    opacity: .8;
}

/* メッセージ */
.reset-message {
    text-align: center;
    margin: 12px 0;
    font-size: 14px;
}
