/* ── Magic Link Login — login page ─────────────────────────────── */

#mhm-ml-wrap {
    text-align: center;
}

#mhm-ml-form {
	border: none;
}

#mhm-ml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 3px;
    color: #1d2327;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    line-height: 1.4;
}

#mhm-ml-btn:hover {
    background: #f6f7f7;
    border-color: #c3c4c7;
}

/* ── Magic Link Login — magic link box ─────────────────────────── */

#mhm-ml-box {
    padding: 0;
    background: #fff;
}

#mhm-ml-box label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #3c434a;
}

#mhm-ml-box .input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
}

#mhm-ml-send {
    width: 100%;
    margin-bottom: 8px;
}

#mhm-ml-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #dcdcde;
    border-radius: 3px;
    color: #1d2327;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    line-height: 1.4;
}

#mhm-ml-cancel:hover {
    background: #f6f7f7;
    border-color: #c3c4c7;
}

/* ── Messages ───────────────────────────────────────────────────── */

.mhm-ml-message-error {
    border-left-color: #cc1818;
    color: #cc1818;
}
