/* ===========================
   共通ラッパー
=========================== */
.mbase-single {
    grid-template-columns: 1fr;
}

.mbase-form-wrap,
.mbase-profile-wrap {
    background: #ffffff;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 40px 48px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

/* ===========================
   タイトル
=========================== */
.mbase-title {
    font-size: 22px;
    font-weight: 700;
    color: #1C2B4A;
    margin-bottom: 24px;
}

/* ===========================
   マイページヘッダー
=========================== */
.mbase-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.mbase-logout-link {
    font-size: 13px;
    color: #888888;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mbase-logout-link:hover {
    color: #1C2B4A;
}

.mbase-email {
    font-size: 13px;
    color: #888888;
    margin-bottom: 24px;
}

/* ===========================
   プロフィール充実度
=========================== */
.mbase-progress-wrap {
    background: #F5F5F0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
}

.mbase-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
    color: #1C2B4A;
    margin-bottom: 8px;
}

.mbase-progress-count {
    font-weight: 700;
    color: #F5A623;
}

.mbase-progress-bar {
    background: #E8EDF5;
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
}

.mbase-progress-fill {
    background: #F5A623;
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.mbase-progress-hint {
    font-size: 12px;
    color: #888888;
    margin-top: 8px;
}

/* ===========================
   セクション
=========================== */
.mbase-section {
    margin-top: 8px;
}

.mbase-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #1C2B4A;
    border-left: 3px solid #F5A623;
    padding-left: 8px;
    margin-bottom: 20px;
}

/* ===========================
   フォーム
=========================== */
.mbase-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mbase-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mbase-field label {
    font-size: 13px;
    font-weight: 500;
    color: #1C2B4A;
}

.mbase-hint {
    font-size: 11px;
    font-weight: 400;
    color: #888888;
    margin-left: 6px;
}

.mbase-field input[type="text"],
.mbase-field input[type="email"],
.mbase-field input[type="password"],
.mbase-field select {
    width: 100%;
    padding: 10px 12px;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-size: 14px;
    color: #1C2B4A;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}

.mbase-field input:focus,
.mbase-field select:focus {
    border-color: #F5A623;
}

/* ===========================
   ボタン
=========================== */
.mbase-submit {
    display: block;
    width: 100%;
    padding: 11px;
    background: #1C2B4A;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.mbase-submit:hover {
    background: #F5A623;
    color: #1C2B4A;
}

/* ===========================
   サブリンク
=========================== */
.mbase-sub-link {
    text-align: center;
    font-size: 13px;
    color: #888888;
    margin-top: 20px;
}

.mbase-sub-link a {
    color: #1C2B4A;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===========================
   メッセージ
=========================== */
.mbase-error {
    background: #fef0f0;
    border: 0.5px solid #f5c2c2;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #d63638;
    margin-bottom: 16px;
}

.mbase-warning {
    background: #fff8ed;
    border: 0.5px solid #f5a623;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #1C2B4A;
    margin-bottom: 16px;
}

.mbase-success {
    background: #f0fef4;
    border: 0.5px solid #a8e6bc;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #1a7f37;
    margin-bottom: 16px;
}

.mbase-checkbox-field {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #1C2B4A;
}

.mbase-checkbox-field input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #F5A623;
}

.mbase-checkbox-field a {
    color: #1C2B4A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 1024px) {
    .mbase-form-wrap,
    .mbase-profile-wrap {
        padding: 24px 20px;
    }
}